-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (31 loc) · 776 Bytes
/
style.css
File metadata and controls
31 lines (31 loc) · 776 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
body {
color: #ffffff;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
background-color: #2C2F33;
font-size: 150%;
}
button {
font-size: 100%;
border-radius: 20px;
color:#FFFFFF;
font-family:Verdana, Geneva, Tahoma, sans-serif;
background-color: #275edc;
transition-duration: 0.4s;
cursor: pointer;
}
button:hover {
background-color: #A93226;
color: #FFFFFF;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
input {
width: 20%;
padding: 1% 1%;
box-sizing: border-box;
font-size: 73%;
font-family: Verdana, Geneva, Tahoma, sans-serif;
border: 4px solid white;
background-color: #42474d;
color: white;
}