forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
feed.css
108 lines (90 loc) · 1.69 KB
/
feed.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* Add your general styling for the form container */
.container {
max-width: 600px;
margin: auto;
padding: 20px;
background-color: #121212;
border: 1px solid #3999af;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style for form labels */
.form-label {
font-weight: bold;
color: #007bff;
}
/* Style for form inputs */
.form-control {
width: 100%;
padding: 8px;
margin-bottom: 15px;
border: 1px solid #121212;
border-radius: 4px;
box-sizing: border-box;
}
/* Style for radio buttons and labels */
.form-check-input {
margin-right: 5px;
color: #f6f4f4;
}
/* Style for checkboxes and labels */
.form-check-input[type="checkbox"] {
margin-right: 8px;
}
/* Style for submit button */
.btn {
background-color: #007bff;
color: #fff;
border: 1px solid #007bff;
border-radius: 4px;
padding: 10px 20px;
cursor: pointer;
}
/* Style for the overall form layout */
.row {
margin-bottom: 15px;
}
/* Optional: Add styles for the body to improve overall appearance */
body {
font-family: 'Arial', sans-serif;
background-color: #121212;
margin: 0;
padding: 0;
}
/* Optional: Add a bit of space around the form */
body .container {
margin-top: 30px;
}
h3{
color:#60bbc5
}
h2{
color:rgb(161, 127, 255);
}
label {
font-weight: bold;
margin-right: 10px;
color: antiquewhite;
}
input[value="1"] + label {
color: #FF0000;
}
input[value="2"] + label {
color: #FFA500;
}
input[value="3"] + label {
color: #FFFF00;
}
input[value="4"] + label {
color: #008000;
}
input[value="5"] + label {
color: #0000FF;
}
.d-flex.flex-wrap {
display: flex;
}
.form-check.form-check-inline.me-3{
display: inline-block;
margin-right: 10px;
}