-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageSlider.css
75 lines (66 loc) · 1.33 KB
/
imageSlider.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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
width: 100%;
height: 757px;
background: #ebd687;
display: flex;
justify-content: center;
align-items: center;
}
#container {
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
width: 70%;
height: 757px;
background: #ffe37d;
/* border: 3px solid #fde585; */
box-shadow: 0 0 5px #bbb, 0 0 5px #bbb;
}
#output {
width: 100%;
height: 500px;
background-image: #fadb6a;
/* box-shadow: 0 0 15px 3px #888, 0 0 15px 3px #888; */
box-shadow:
0px 3px 8px -3px rgba(50, 50, 50, 0.75),
0px -3px 8px -3px rgba(50, 50, 50, 0.75);
}
#btnNext, #btnLast {
padding: 10px 15px;
background: #ffe37d;
border: none;
font-size: 40px;
cursor: pointer;
color:snow;
font-weight: bold;
text-shadow: 0 0 3px #666, 0 0 3px #666;
}
#btnNext:hover, #btnLast:hover {
text-shadow: 0 0 5px dodgerblue, 0 0 5px dodgerblue;
}
@media screen and (max-width: 1100px){
#container {
width: 75%;
}
}
@media screen and (max-width: 950px){
#container {
width: 80%;
}
}
@media screen and (max-width: 800px){
#container {
width: 85%;
}
}
@media screen and (max-width: 600px){
#container {
width: 90%;
}
}