-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
149 lines (119 loc) · 2.18 KB
/
style.css
File metadata and controls
149 lines (119 loc) · 2.18 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
:root{
--white:#fff;
--light-grey:#444343;
--grey:#3c3c3c;
--blue:#119ec9;
--playgd-color:#f7eedd;
--grid-cell: 6;
--gap: 1rem;
--time:0.5sec;
}
.container{
display: flex;
flex-direction: column;
width: 100%;
min-height: 100vh;
justify-content: space-between;
align-items: center;
position: relative;
}
.final_screen_container{
position: fixed;
/* position: absolute; */
inset:0;
background-color: rgb(119, 118, 115,0.684);
display: grid;
place-items: center;
/* opacity: 0; */
visibility: hidden;
}
.final_screen{
display: flex;
flex-direction: column;
align-items: center;
row-gap: var(--gap);
padding: 2rem;
background-color: white;
border-radius: 0.5rem;
padding: 4rem 2rem;
}
.playground{
background-color: var(--playgd-color);
height: 90vmin;
width: 90vmin;
border-radius: 1rem;
display: grid;
gap:0.5%;
/* grid-template-columns: ; */
}
.btn{
padding: 0.05rem 0.5rem ;
background-color: var(--blue);
color: white;
border-radius: 0.25rem;
font-weight: 300;
border: none;
cursor: pointer;
}
.cell{
border: 2px solid red;
border-radius: 1rem;
display: grid;
place-items: center;
background-color: white;
color: #119ec9;
transition: 0.3s;
}
.cover{
position: absolute;
width: 100%;
height: 100%;
background-color: white;
border-radius:inherit ;
/* animation: spin 3s 1; */
}
.card_image{
display: grid;
place-items: center;
}
.features{
display: flex;
column-gap: 1rem;
}
.final_screen_heading{
color: var(--grey);
font-size: 2rem;
}
.wrong-group{
color: rgb(91, 91, 91);
}
.final-btn{
margin-top: 1rem;
}
.timer{
color: rgb(25, 212, 203);
font-weight: 300;
}
/* control properties */
@keyframes spin{
0%{
transform: rotateY(0deg)
}
100%{
transform: rotateY(180deg)
}
}
@keyframes antispin{
0%{
transform: rotateY(180deg)
}
100%{
transform: rotateY(0deg)
}
}
/* spin should be added to cell */