-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (83 loc) · 1.51 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
#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;
}
.body {
padding: 5%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
display: flex;
text-align: left;
background-color: #fff;
align-content: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}
.container {
width: 80%;
height: 92%;
position: absolute;
background-color: rgba(255,255,255,0.8);
box-shadow: 10px 0 20px #777;
overflow: auto;
padding: inherit;
}
@media (max-width: 767px) {
.justify-content-around.align-items-center.mt-3.gallery-header.mb-2 {
flex-direction: column;
}
#sliders {
height: 300px;
width: 90%;
}
}