-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (48 loc) · 953 Bytes
/
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
*{
background-color: rgb(0, 0, 0);
color: white;
font-family: Arial, Helvetica, sans-serif;
}
label{
background-color: rgb(10, 64, 84);
border-radius: 25px;
font-family: Helvetica, sans-serif;
}
input{
font-size: 1rem;
width: 150px;
text-align: center;
font-weight: bold;
}
button{
font-size: 1.5rem;
padding: 10px 15px;
border-radius: 10px;
border: none;
margin: 5px;
background-color: rgb(31, 109, 150);
cursor: pointer;
}
button:hover{
background-color: rgb(0, 85, 131);
cursor: pointer;
}
button:active{
background-color: rgb(0, 85, 101);
}
#inputcontainer{
background-color: rgb(10, 64, 84);
text-align: center;
padding: 20px;
display: inline-block;
border-radius: 20px;
}
#carlists,#results,#whodrives{
background-color: rgb(47, 47, 47);
border-radius: 50px;
text-align: center;
}
#carlists{
margin-top: 50px;
padding: 20px;
}