-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (49 loc) · 977 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
body {
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
color: teal;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: #ede8e3;
}
#button-container {
height: 7em;
width: 7em;
background-color: #e9c97d;
border-radius: 100%;
}
#confetti {
display: flex;
/*text-align: center;
justify-content: center;*/
color: teal;
border: none;
background-color: #e9c97c00;
font-weight: 600;
font-size: .95em;
line-height: 1.35em;
padding: 1.9em;
border-radius: 100%;
cursor: pointer;
}
.title{
font-size: .45em;
color: coral;
display:flex;
justify-content:center;
align-items:center;
position: absolute;
transform:translate(-50%, -50%);
animation: rotating 15s linear infinite;
}
@keyframes rotating {
from{
transform: rotate(0deg)
}
to {
transform: rotate(360deg)
}
}