-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (103 loc) · 1.91 KB
/
style.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body{
margin: 0;
}
#sliders {
height: 400px;
width: 60%;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.gallery-header {
display: none;
}
.slider-item {
display: none;
}
.img-thumbnail {
cursor: pointer;
}
.added {
border: 2px solid #1e1743;
border-radius: 5px;
}
img {
height: 400px;
object-fit: cover;
}
.prev-next {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
cursor: pointer;
}
.prev, .next {
background-color: transparent;
padding: 8px 10px;
color: #fff;
}
.dot {
background-color: rgb(163, 156, 156);
height: 10px;
width: 10px;
border-radius: 50%;
cursor: pointer;
margin: 0 3px;
}
.main {
display: none;
}
@media (max-width: 767px) {
.justify-content-around.align-items-center.mt-3.gallery-header.mb-2 {
flex-direction: column;
}
#sliders {
height: 300px;
width: 90%;
}
}
/* onloader */
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 100px;
height: 100px;
margin: -76px 0 0 -76px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #007bff;
border-bottom: 16px solid #007bff;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s;
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
#myDiv {
display: none;
text-align: center;
}