-
-
Notifications
You must be signed in to change notification settings - Fork 35.7k
/
Copy pathindex.css
51 lines (48 loc) · 777 Bytes
/
index.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
body {
margin: 0;
width: 100%;
}
.lesson-main>* {
margin: 1em 0;
}
iframe.background {
position: fixed;
width: 100%;
height: 100%;
max-width: 100% !important;
border: none;
top: 0;
z-index: -1000;
}
.container {
margin: 2em auto;
padding: 15px 50px;
border-radius: 25px;
background-color: rgba(255, 255, 255, 0.9);
max-width: 700px;
width: 80%;
}
#language {
margin-top: -2em;
width: auto;
font-size: large;
}
.rss {
float:right;
width:46px;
height:46px;
}
.rss img {
width: 46px;
height: 46px;
}
@media (max-width: 600px) {
.container {
padding: 15px 20px;
}
}
@media (prefers-color-scheme: dark) {
.container {
background-color: rgba(0, 0, 0, 0.9);
}
}