-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
59 lines (49 loc) · 881 Bytes
/
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
input {
color: rgb(31, 31, 31);
font-size: 20px !important;
}
.list-item {
display: inline-block;
margin-right: 10px;
}
.list-enter-active, .list-leave-active {
transition: all 1s;
}
.list-enter, .list-leave-to {
opacity: 0;
transform: translateY(30px);
}
.timer {
background-repeat: no-repeat !important;
}
.big {
font-size: 48px !important;
height: auto !important;
}
.main-timer {
position: sticky;
top: 40vh;
/* width: 120px; */
/* transform-origin: right; */
/* transform: scale(2); */
}
.unclickable {
pointer-events: none;
}
.blink {
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0.50;
}
}
.texto-vermelho {
color: red !important;
}
.texto-cinza {
color: gray !important;
}
.grayed-filter {
filter: contrast(30%) brightness(150%);
}