-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslides.css
More file actions
60 lines (60 loc) · 1.09 KB
/
Copy pathslides.css
File metadata and controls
60 lines (60 loc) · 1.09 KB
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
.slider-frame {
display: block;
}
.slider-horizontal {
display: none;
overflow: auto;
white-space: nowrap;
font-size: 0;
}
.slider {
width: 640px;
height: 360px;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
text-align: center;
overflow: hidden;
background-color: rgb(87, 87, 87);
}
.slide-images {
width: 12800px;
height: 360px;
clear: both;
position: relative;
background-color: rgb(230, 230, 230);
-webkit-transition: left 1s;
-moz-transition: left 1s;
-o-transition: left 1s;
transition: left 1s;
}
.slide {
width: 640px;
height: auto;
float: left;
margin: 0px;
padding: 0px;
position: relative;
}
.slide-buttons {
top: -2em;
position: relative;
}
.slide-buttons button {
height: 15px;
width: 15px;
border-radius: 50px;
border-width: 1px;
border-style: solid;
border-color: black;
background-color: rgb(255, 255, 255);
display: inline-block;
}
@media (max-width: 750px) {
.slider-frame {
display: none;
}
.slider-horizontal {
display: block;
}
}