-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (80 loc) · 1.65 KB
/
styles.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
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
@import "node_modules/react-image-gallery/styles/css/image-gallery.css";
a{
text-decoration: none;
color: white;
}
a:hover{
color: none;
}
a:visited{
color: none;
}
.slider {
width: 100%;
height: 25%;
display: flex;
justify-content: center;
align-items: center;
}
.image {
width: 100%;
height: 50%;
}
.right-arrow {
position: absolute;
top: 80%;
right: 32px;
font-size: 1.5rem;
color: rgb(204, 198, 198);
z-index: 10;
cursor: pointer;
user-select: none;
}
.left-arrow {
position: absolute;
top: 80%;
left: 32px;
font-size: 1.5rem;
color: rgb(204, 198, 198);
z-index: 10;
cursor: pointer;
user-select: none;
}
.slide.active {
opacity: 1;
}
.spinner {
margin: 100px auto 0;
width:100%;
text-align: center;
}
.spinner > div {
width: 50px;
height: 50px;
background-color: rgb(10, 10, 10);
border-radius: 100%;
display: inline-block;
-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}