-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (72 loc) · 1.06 KB
/
Copy pathstyle.css
File metadata and controls
84 lines (72 loc) · 1.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
margin:0;
font-family: Arial;
background:black;
color:white;
}
header {
background:darkred;
padding:15px;
display:flex;
align-items:center;
}
.menu-icon {
font-size:25px;
cursor:pointer;
}
h1 {
flex:1;
text-align:center;
}
.container {
padding:20px;
}
.chapter {
background:#111;
margin-bottom:10px;
padding:15px;
border-left:5px solid darkred;
display:flex;
justify-content:space-between;
align-items:center;
}
.three-dot {
cursor:pointer;
font-size:20px;
}
.dropdown {
display:none;
position:absolute;
background:#222;
padding:10px;
}
button {
background:darkred;
color:white;
border:none;
padding:10px;
margin:5px;
cursor:pointer;
}
iframe {
width:100%;
height:400px;
border:none;
margin-top:15px;
}
.side-menu {
position:fixed;
left:-300px;
top:0;
width:250px;
height:100%;
background:#111;
padding:20px;
transition:0.3s;
}
.hidden {
display:none;
}
.nav-buttons {
margin-top:20px;
}