-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (90 loc) · 1.28 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
96
97
98
99
100
101
102
103
104
105
106
107
blockquote {
padding-left: 20px;
margin-left: 0;
margin-right: 0;
background: #ddd;
border-left: 5px solid #ccc;
border-radius: 0 3px 3px 0;
}
blockquote p {
padding: .5em;
color: #272822;
}
p {
display: block;
-webkit-margin-before: 0.9em;
-webkit-margin-after: 0.9em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}
pre {
font-size: 90%;
line-height: 1.2;
}
ul {
padding: 0 0 0 40px;
font-weight: 200;
line-height: 1.6;
}
.progress {
z-index: 1000;
}
.progress-bar {
height: 5px;
}
img {
width: 100%
}
#slide-1 img {
width: auto;
}
body, .slide {
background-color: #eee;
}
.slide-content {
margin-top: 20px;
width: auto;
max-width: 900px;
height: auto;
overflow: auto;
z-index: 1;
}
.arrow {
position: fixed;
bottom: 70px;
margin: 0;
padding: 0;
border: none;
opacity: 0.3;
transform: scale(0.8);
}
@media (max-width: 850px) {
.arrow {
opacity: 0.2;
bottom: 60px;
transform: scale(0.7);
}
}
@media (max-width: 480px) {
.arrow {
opacity: 0.1;
bottom: 52px;
transform: scale(0.56);
}
}
.prev {
left: 0;
border: none;
}
.prev:before {
float: left;
content: url(img/left.png);
}
.next {
right: 0;
border: none;
}
.next:before {
float: right;
content: url(img/right.png);
}