-
Notifications
You must be signed in to change notification settings - Fork 0
/
carReservations2.css
139 lines (120 loc) · 2.15 KB
/
carReservations2.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
*{
margin: 0;
padding: 0
}
body{
min-height: 100vh;
background-color: rgba(13, 107, 90, 0.479);
width: 100%;
}
.navbar{
padding: 20px 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0%;
z-index: 999;
background-color: rgba(182, 77, 35);
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
width: 100%;
}
.navbar .logo a{
color: white;
font-size: 28px;
text-decoration: none;
font-weight: bold;
}
.navbar .menu{
position: absolute;
top: 50%;
left: 80%;
transform: translate(-50%,-50%);
height: 30px;
}
.navbar .menu li{
display: inline-block;
position: relative;
}
.navbar .menu li ul.dropdown li{
display: block;
}
.navbar .menu li ul.dropdown {
width: 300%;
background: rgba(182, 77, 35);
position: absolute;
border-radius: 20px;
border: 1px solid white;
z-index: 999;
top: 100%;
display: none;
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.navbar .menu li a:hover{
background: white;
color: rgba(182, 77, 35);
}
.navbar .menu li:hover ul.dropdown {
display: block;
}
.navbar .menu li{
list-style: none;
display: inline-block;
}
.navbar .menu li a{
display: block;
margin-left: 25px;
color: white;
border-bottom: 8px solid transparent;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
.navbar .menu li a:hover{
border-bottom: 4px solid white;
}
h1{
background-color:rgb(221, 185, 27);
padding: 20px;
text-align: center;
color: white;
box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
width: 100%;
}
table {
border-collapse: collapse;
font-size: 20px;
text-align: left;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
border-radius: 10px;
border-color: white;
margin: auto;
border: 3px solid ;
padding: 10px;
margin-top: 50px;
}
th {
background-color: #107e50;
color: white;
width: 150px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
footer{
position: sticky;
top: 100%;
background-color: rgba(182, 77, 35);
height: 13vh;
width: 100%;
}
footer p{
text-align: center;
line-height: 13vh;
}
footer p a{
text-decoration: none;
color: white;
font-size: 24px;
font-weight: bold;
}