-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (91 loc) · 1.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
:root {
font-family: "Roboto Mono";
transition: all 0.3s ease-in-out;
}
body {
transition: all 0.3s ease-in-out;
text-align: center;
margin: 0;
}
body.light {
background-color: white;
color: black;
}
body.dark {
background-color: black;
color: white;
}
#minutes {
font-size: 200px;
font-weight: 100;
line-height: 100vh;
height: 100vh;
margin: 0;
}
#minutes.paused {
animation: pause 2s infinite ease-in-out forwards;
}
@keyframes pause {
0% {
opacity: 100%;
}
50% {
opacity: 25%;
}
100% {
opacity: 100%;
}
}
/*#bubble {
background-color: red;
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
clip-path: circle(100px);
}*/
#control {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 70px;
}
body button {
transition: all 0.3s ease-in-out;
border-radius: 50px 50px 0 0;
border: none;
height: 70px;
width: 50px;
position: relative;
bottom: -15px;
}
.material-icons {
transition: 0.3s all ease-in-out;
transform: rotateY(0deg);
}
.material-icons.transition-spin {
transform: rotateY(180deg);
}
body button:hover {
bottom: 0;
}
body.light button {
background-color: transparent;
color: black;
}
body.light button:hover {
background-color: black;
color: white;
}
body.dark button {
background-color: transparent;
color: white;
}
body.dark button:hover {
background-color: white;
color: black;
}