-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (81 loc) · 1.23 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
#sliders {
height: 400px;
width: 60%;
overflow: hidden;
margin: 0 auto;
position: relative;
}
.gallery-header,
.num-selected-image {
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%;
}
}
#not-found-warning,
#loading-spinner {
display: none;
}
.display-flex {
display: flex !important;
}
#headText{
font-size: 46px;
}
.text-animation {
animation: headText 4s linear infinite;
}
@keyframes headText {
0%, 100% {
transform: scale(1);
color: cyan;
}
50% {
transform: scale(0.999);
color: green;
}
}