-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsl.css
74 lines (55 loc) · 925 Bytes
/
rsl.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
body {
font-family: sans-serif;
letter-spacing: -0.3em;
/* background: #272822; */
background: #222;
/*color: #A6E22E;*/
/* color: #FDF5A9; */
color: #ddd;
position: relative;
user-select: none;
cursor: default;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.rsl-slide {
padding: 40px 80px;
position: absolute;
top: 0;
left: 0;
line-height: 1;
visibility: hidden;
}
.rsl-slide.rsl-visible {
visibility: visible;
/*-webkit-animation: slide 0.5s forwards;*/
/*-webkit-animation-delay: 0s;*/
}
/*@-webkw*/
h1, h2, h3, h4, h5 {
vertical-align: top;
top: 0;
left: 0;
margin-bottom: 0.1em;
font-weight: 800;
}
ol, ul {
list-style-position: inside;
/* font-weight: normal; */
padding: 0;
margin-left: 30px;
}
li {
line-height: 130%;
}
code {
font-family: Menlo, monospace;
}