-
Notifications
You must be signed in to change notification settings - Fork 0
/
ciclo.css
48 lines (42 loc) · 788 Bytes
/
ciclo.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
/* Timer */
body {
background-color: red;
transition: background-color 1s ease-in-out;
}
.timer-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
#timer {
font-size: 6rem;
color: black;
}
#text {
font-size: 2rem;
color: black;
margin-top: 2rem;
text-align: center;
}
/* Botão de cancelar */
.btn-shadow {
box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
border: none;
}
.btn-danger {
background-color: black;
color: #fff;
}
.fixed-bottom {
position: fixed;
bottom: 20px;
right: 20px;
width: 190px;
height: 70px;
border-radius: 10px;
text-align: center;
line-height: 50px;
margin: 25px;
}