-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathslide.css
60 lines (52 loc) · 785 Bytes
/
slide.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
body {
font-size: 2em;
}
h1 {
padding: 1em 0;
text-align: center;
}
#wrapper {
max-width: 800px;
margin: 0 auto;
}
#touch {
position: fixed;
bottom: 0;
right: 0;
padding: .3em;
z-index: 999999;
}
#touch button {
font-size: 1em;
background-color: rgba(0,0,0,.8);
color: white;
border: none;
padding: .3em;
-webkit-border-radius: .25em;
border-radius: .25em;
}
#done, #next, #prev {
display: none;
}
.hidden {
opacity: 0;
}
.message {
position: fixed;
top: 0;
left: 0;
background-color: rgba(0,0,0,.8);
color: white;
padding: .3em;
margin: .3em;
-webkit-border-radius: .25em;
border-radius: .25em;
}
@media screen and (max-width:599px) {
body {
font-size: 1.5em;
}
img {
max-width: 100%;
}
}