-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (52 loc) · 1.08 KB
/
styles.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
@import "https://fonts.googleapis.com/css?family=Oswald:700";
body {
background: black;
height: 100vh;
font-family: 'Oswald';
font-weight: 700;
color:white;
font-size:40vh;
}
.stopwatch{
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.buttons{
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
#hours,#minutes,#seconds{
margin:20px;
}
button{
border:1px solid white;
background:white;
font-size:3vh;
text-transform: uppercase;
margin:10px;
cursor:pointer;
border-radius:3px;
padding:10px;
}
button:hover{
background:black;
color:white;
}