-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (63 loc) · 1015 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
}
.container {
max-width: 1200px;
width: 90%;
margin: 0 auto;
}
header {
text-align: center;
padding: 10px;
}
/* slider css */
.slider__wrapper {
max-width: 80%;
margin: 0 auto;
display: flex;
gap: 3px;
justify-content: space-between;
align-items: center;
}
button {
background-color: black;
color: white;
border: 0;
outline: 0;
/* padding: 5px 2px; */
padding-top: 4px;
border-radius: 5px;
font-family: inherit;
cursor: pointer;
transition: .3s ease-in-out;
}
button:hover {
background-color: rgb(37, 37, 37);
}
.dot__wrapper{
height: 20px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.dot{
width: 10px;
height: 10px;
background-color: rgb(198, 198, 198);
border-radius: 50%;
display: inline-block;
margin: 0 4px;
cursor: pointer;
}
@media(min-width: 1000px) {
.slider__wrapper{
max-width: 70%;
}
}