-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
75 lines (55 loc) · 990 Bytes
/
Copy pathmain.css
File metadata and controls
75 lines (55 loc) · 990 Bytes
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
body{
height:100vh;
width:670px;
background-color: aqua;
}
.grid {
height: 80%;
display: grid;
grid-gap: 2px;
grid-template-columns: repeat(5, 1fr);
/* grid-template-rows: repeat(4, 1fr); */
}
.box {
background-image: url("https://static.appvn.com/a/uploads/thumbnails/112015/mr-square_icon.png");
background-size: 110px;
height: 110px;
width: 110px;
border-style: solid;
border-width: 10px;
border-color: black;
border-radius: 10px;
}
img{
visibility: hidden;
height: 100%;
width: 100%;
}
.show{
visibility: visible;
}
/**** Loading Spinner Styles ****/
@keyframes spinner-line-fade-more {
0%, 100% {
opacity: 0; /* minimum opacity */
}
1% {
opacity: 1;
}
}
@keyframes spinner-line-fade-quick {
0%, 39%, 100% {
opacity: 0.25; /* minimum opacity */
}
40% {
opacity: 1;
}
}
@keyframes spinner-line-fade-default {
0%, 100% {
opacity: 0.22; /* minimum opacity */
}
1% {
opacity: 1;
}
}