-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (62 loc) · 1.28 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
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
:root {
--white: #EEEEEE;
--grey1: #222831;
--grey2: #393E46;
--red: #EB5353;
--yellow:#FFD369;
--green: #36AE7C;
}
html {
height: 100%;
}
body {
font-family: 'Bebas Neue', sans-serif;
background-color: var(--white);
}
.wrapper {
width: 100%;
margin: 30px auto;
color: var(--grey1);
text-align: center;
}
h1 {
font-weight: 300;
font-size: 5em;
text-transform: uppercase;
}
p {
font-size:8em;
margin: 60px 0px;
color: var(--grey2);
}
#button-start,
#button-stop,
#button-reset {
font-family: 'Fugaz One', sans-serif;
text-transform: uppercase;
border-radius: 5px;
cursor: pointer;
font-size: 1.2em;
padding: 18px 10px;
width: 130px;
margin: 8px;
border-color: transparent;
color: var(--grey1);
box-shadow: 0px 2px 6px var(--grey2);
}
#button-start{
background: var(--green);
}
#button-stop{
background: var(--red);
}
#button-reset{
background: var(--yellow);
}
#button-start:active,
#button-stop:active,
#button-reset:active {
transform: translateY(2px);
box-shadow: var(--white);
}