-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (76 loc) · 1.23 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
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
81
82
83
84
85
86
* {
margin: 0;
font-family: 'Anton', sans-serif;
}
body {
background: #29294e;
transition: background 0.5s;
}
h1 {
width: 100%;
text-align: center;
color: #FFF;
margin-top: 20px;
font-size: 72px;
}
#container {
width: 100%;
display: flex;
}
#circle {
border-radius: 50%;
width: 340px;
height: 340px;
border: #FFF solid 10px;
margin: 40px auto 0 auto;
background: #29294e;
font-size: 42px;
color: #FFF;
outline: none;
transition: background 0.5s;
transition: color 0.5s;
transition: font-size 0.5s;
}
#circle:hover {
cursor: pointer;
background: #FFF;
color: #29294e;
font-size: 57px;
}
#stopwatch {
visibility: hidden;
font-size: 102px;
width: 100%;
margin: 0 auto;
color: #29294e;
display: none;
text-align: center;
}
#stop {
visibility: hidden;
display: none;
width: 50%;
border: 10px #29294e solid;
border-radius: 10px;
font-size: 80px;
background: #FFF;
color: #29294e;
margin: 130px auto 0 auto;
transition: background 0.5s;
transition: color 0.5s;
}
#stop:hover {
background: #29294e;
cursor: pointer;
color: #FFF;
}
a {
text-decoration: none;
color: #FFF;
font-size: 24px;
}
#github {
width: 100%;
text-align: center;
margin-top: 70px;
}