-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
120 lines (106 loc) · 2.27 KB
/
style.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
body {
font-family: 'Arial', sans-serif;
background-color: #004d60;
color: #ffffff;
margin: 0;
padding: 0;
}
.header {
background: rgb(4,107,132);
background: linear-gradient(180deg, rgba(4,107,132,1) 81%, rgba(0,77,96,1) 100%);
padding: 10px;
text-align: center;
}
.logo {
max-width: 100px;
margin-bottom: 10px;
}
.content {
text-align: center;
padding: 20px;
}
/* Accent color */
button {
background-color: #00aabb;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 5px;
font-size: 16px;
margin-bottom: 20px;
}
/* Dark hover effect */
button:hover {
background-color: #008c99;
}
/* Darker color for list items */
#parkingList div {
background-color: #003d4f;
padding: 15px;
margin-bottom: 10px;
border-radius: 5px;
text-align: center;
}
/* Style for the 'Meer informatie' links */
.parking-item a {
color: #00aabb;
background-color: rgba(255, 255, 255, 0.2);
padding: 5px 10px;
border-radius: 3px;
text-decoration: none;
display: inline-block;
margin: 5px 0;
transition: background-color 0.3s;
}
/* An eyecatching background for hover */
.parking-item a:hover {
background-color: rgba(255, 255, 255, 0.5);
color: #004d60;
}
.footer {
background-color: #003d4f;
color: #ffffff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 1000;
}
.address-input {
padding: 10px 20px;
border-radius: 5px;
border: none;
margin-bottom: 10px;
width: calc(15% - 40px); /* Reduce width to account for padding */
}
.address-input:focus {
outline: none;
border-color: #00aabb;
box-shadow: 0 0 5px #00aabb;
}
.qr-code-container {
display: block;
margin-left: auto;
margin-right: auto;
width: fit-content;
}
#loadingSpinner {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}