-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (101 loc) · 2.15 KB
/
style.css
File metadata and controls
116 lines (101 loc) · 2.15 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
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
html, body {
font-family: 'Poppins', sans-serif;
font-weight: lighter;
text-align: center;
margin: 0;
height: 100vh;
overflow:hidden;
background: linear-gradient(rgb(195,37,39), rgb(200, 200, 200), rgb(37,195,193));
}
.ui, .menu {
color: white;
padding: 0.5rem;
width: 45%;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.2);
margin-left: auto;
margin-right: auto;
margin-bottom: 2rem;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
border: 2px solid rgba(255, 255, 255, 0.3);
text-shadow: 1px 4px 3px rgba(0, 0, 0, 0.1);
}
.menu {
margin-top: 15rem;
padding: 2rem;
}
.game {
padding-top: 7rem;
display: none;
}
button {
background-color: #ff4754;
font-family: 'Poppins', sans-serif;
border-radius: 8px;
border-style: none;
color: white;
cursor: pointer;
padding: 10px 16px;
transition: color 100ms;
font-size: medium;
box-shadow: 1px 4px 3px rgba(0, 0, 0, 0.1);
}
button:hover,
button:focus {
background-color: #ff4753c2;
}
.progress {
margin: 1rem;
margin-left: auto;
margin-right: auto;
height: 0.6rem;
border-radius: 0.3rem;
background-color: rgba(255, 255, 255, 0.5);
}
.progress .progress-value {
height: 100%;
border-radius: 0.3rem;
background-color: #ff4754;
transition: width 0.1s linear;
}
.progress .progress-value .reset{
transition: none;
}
.element-list {
width: 500px;
height: 500px;
display: flex;
flex-wrap : wrap;
justify-content: space-between;
margin-left: auto;
margin-right: auto;
align-items: center;
}
.element {
width: 50px;
height: 50px;
cursor: pointer;
}
svg {
fill-rule:evenodd;
clip-rule:evenodd;
stroke-linejoin:round;
width: 100%;
height: 100%;
stroke-miterlimit:2;
fill: var(--background) !IMPORTANT;
}
.rotating {
animation: rotating 5s linear infinite;
}
@keyframes rotating {
to{
transform: rotate(360deg);
}
}
@keyframes rotating-inverse {
to{
transform: rotate(-360deg);
}
}