-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (93 loc) · 1.76 KB
/
style.css
File metadata and controls
106 lines (93 loc) · 1.76 KB
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
body{
margin: 0;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
height: 100vh;
background: linear-gradient(-45deg, #0052CC, #0600AB, #00033D);
background-size: 400% 400%;
animation: bg 12s ease infinite;
}
@keyframes bg{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 100%;
}
100%{
background-position: 0% 50%;
}
}
.container{
font-family: Arial, Helvetica, sans-serif;
max-width: 1280px;
width: 100%;
max-height: 1080px;
height: 100%;
overflow: hidden;
justify-content: center;
align-content: center;
}
.timer{
height: 600px;
font-size: 10rem;
color: #FFD6C0;
justify-content: center;
text-align: center;
align-content: center;
}
.scramble{
font-size: 1rem;
color: #FFD6C0;
justify-content: center;
text-align: center;
align-content: center;
}
.instruction{
font-size: 1rem;
color: #FFD6C0;
justify-content: center;
text-align: center;
align-content: center;
}
.button{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 25px;
display: block;
display: flex;
justify-content: center;
}
.btn {
cursor: pointer;
font-weight: 700;
transition: all 0.2s;
padding: 10px 20px;
border-radius: 100px;
background: #FFD6C0;
border: 1px solid transparent;
display: flex;
align-items: center;
font-size: 15px;
color: #0052CC;
}
.btn:hover {
background: #0052CC;
color: #FFD6C0;
border-color: #FFD6C0;
border-radius: 5px;
}
.btn > svg {
width: 34px;
margin-left: 10px;
transition: transform 0.3s ease-in-out;
}
.btn:hover svg {
transform: translateX(5px);
}
.btn:active {
transform: scale(0.95);
}