-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
65 lines (58 loc) · 1.17 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
body {
background-color:black;
margin : 0;
overflow : hidden;
font-family: 'Montserrat', sans-serif;
font-family: 'Stint Ultra Condensed', cursive;
font-family: 'Stint Ultra Expanded', cursive;
font-family: 'Ultra', serif;
}
#panel {
color : black;
background-color: black;
padding: 5px;
text-align:center;
}
.btn {
background-color: #1abc9c;
color: black;
outline-color: #1abc9c;
outline-style: outset;
border-radius: 25%;
transition: 0.5s;
padding: 15px;
font-size: 20px;
margin: 1px;
}
.btn:hover {
background-color: #16a085;
outline-color:#16a085;
color: white;
transition: 0.5s;
}
.btn:active {
background-color: #16a085;
outline-color: #16a085;
color: white;
outline-style: inset;
transition: 0.5s;
}
#START {
padding: 15px;
font-size: 20px;
background-color:#e74c3c;
outline-color: #e74c3c;
}
#START:hover {
background-color: #c0392b;
outline-color:#c0392b;
color: white;
transition: 0.5s;
}
#START:active {
background-color: #990000;
outline-color: #990000;
color: white;
outline-style: inset;
transition: 0.5s;
}