-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparkbuttonscss.css
More file actions
47 lines (41 loc) · 878 Bytes
/
parkbuttonscss.css
File metadata and controls
47 lines (41 loc) · 878 Bytes
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
.button-grid {
display: flex;
justify-content: center;
}
.section {
display: flex;
flex-direction: column;
align-items: center;
margin: 40px;
}
.button {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
display: block;
padding: 10px;
text-align: center;
background-color:black;
color: #fff;
text-decoration: none;
border: 2px solid whitesmoke;
border-radius: 5px;
margin: 10px;
transition: background-color 0.3s ease;
width:60px;
height:60px;
}
.button a{
text-align: center;
}
.button:hover {
background-color: #2980b9;
}
h1{
text-align: center;
color: whitesmoke;
}
#notavail{
background-color:blue;
}
body{
background-color:rgb(16, 0, 44);
}