-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
152 lines (133 loc) · 2.47 KB
/
css.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
font-family: "Helvetica Neue", Arial, sans-serif;
margin: 0px;
padding: 0px;
/* darkmode */
background-color: #0f172a;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
margin: 0px;
padding: 10px 0px;
color: white;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
margin-top: 5px;
margin-bottom: 10px;
border-radius: 5px;
background: #efefef;
outline: none;
opacity: 0.7;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #fde047;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 25%;
background: #fde047;
cursor: pointer;
}
.sliders_container {
margin: auto;
max-width: 1000px;
}
.sliders_container::after {
content: "";
display: table;
clear: both;
padding-bottom: 3rem;
}
.slider_column {
/* float: left; */
/* display: inline-block; */
/* display: inline; */
/* width: 30%; */
/* overflow-y: scroll; */
/* height: 85vh; */
color: white;
}
.slider_column_padded {
padding: 20px;
}
#img_column {
/* float: left; */
/* display: inline-block; */
/* width: 40%; */
}
#img_column_padded {
/* position: relative; */
padding: 30px 20px 8px 20px;
/* height: 90%; */
}
.button {
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 3rem;
background-color: #efefef;
text-align: center;
}
button {
background-color: #fde047;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
color: #0f172a;
border-radius: 5px;
cursor: pointer;
}
p {
text-align: center;
font-weight: bold;
}
#buttons {
margin: 15px 0px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 25px;
}
#sliders {
/* 2 columns */
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
/* height: 100px; */
}
#grid {
max-width: 1080px;
/* a grid 3 columns first one one and second one is of sliders an the middle one with the image */
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 100px;
}
/* selectr the first child of the grid and the last one */
#grid > div:first-child,
#grid > div:last-child {
/* border: 1px solid black; */
/* padding: 20px; */
height: 90vh;
overflow-y: scroll;
}