-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
162 lines (137 loc) · 3.34 KB
/
styles.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.container {
background-color: rgba(241, 237, 237, 0.5); /* 50% opacity */
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.parking-lot {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.parking-lot img {
height: 200px;
}
.info {
margin-left: 50px;
}
.info h2 {
margin-top: 0;
}
.controls {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.controls button {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.controls button:hover {
background-color: #0056b3;
}
.options {
background-color: #f2f2f2;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.fines {
margin-bottom: 30px;
}
.fines h2 {
margin-top: 0;
}
.fines ul {
list-style: none;
margin: 0;
padding: 0;
}
p {
text-decoration: #0056b3;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: rgba(241, 237, 237, 0.7); /* Increase opacity for better readability */
border-radius: 10px; /* Round the corners of the container */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow to the container */
}
h1 {
text-align: center;
margin-bottom: 30px;
color: #007BFF; /* Make the heading text blue */
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow to the heading text */
}
.parking-lot {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px; /* Add some padding to the parking lot elements */
border: 1px solid #ccc; /* Add a border to the parking lot elements */
border-radius: 5px; /* Round the corners of the parking lot elements */
}
.fines ul {
list-style: none;
margin: 0;
padding: 0;
}
p {
color: #0056b3; /* Change the text color to blue */
font-size: 18px; /* Increase the font size */
line-height: 1.6; /* Increase the line height for better readability */
}
/* Add some styles for the headings */
h1, h2, h3, h4, h5, h6 {
color: #007BFF; /* Change the heading color to a different shade of blue */
margin-bottom: 20px; /* Add some space below the headings */
}
/* Add some styles for the links */
a {
color: #007BFF; /* Change the link color to match the heading color */
text-decoration: none; /* Remove the underline from the links */
}
a:hover {
text-decoration: underline; /* Add the underline back when hovering over the links */
}
.container {
background-color: transparent; /* Make the background transparent */
}
body::after {
content: "";
background: url("images/2.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}