forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.css
92 lines (80 loc) · 1.37 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
body {
font-family: Arial, sans-serif;
background-color: black;
padding: 20px;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 40px;
border-radius: 10px;
box-shadow: 10px 10px 15px rgb(88, 87, 87);
}
h2 {
text-align: center;
color: #007bff;
margin-bottom: 20px;
}
h3 {
margin-top: 30px;
color: #e63946;
margin-bottom: 20px;
}
.mb-3 {
margin-bottom: 1.5rem;
}
.form-label {
font-weight: bold;
color: #1d3557;
margin-bottom: 10px;
}
.form-control {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
margin-top: 10px;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
background-color: #007bff;
color: white;
display: block;
margin: 20px auto 0;
text-align: center;
}
.btn:hover {
background-color: #0056b3;
}
.star {
font-size: 24px;
color: #ccc;
cursor: pointer;
}
.star.checked {
color: #e63946;
}
#navigationEase,
#bookingProcess,
#accuracyInformation,
#paymentOptions,
#securityMeasures,
#customerSupport,
#overallExperience {
gap: 5px;
}
#navigationEase-rating-text,
#bookingProcess-rating-text,
#accuracyInformation-rating-text,
#paymentOptions-rating-text,
#securityMeasures-rating-text,
#customerSupport-rating-text,
#overallExperience-rating-text {
color: #007bff;
margin-top: 10px;
}