-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (48 loc) · 919 Bytes
/
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
*{
padding: 0px;
margin: 0px;
box-sizing:border-box;
font-family: 'Anek Latin', sans-serif;
font-family: 'Noto Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Rubik', sans-serif;
}
html, body{
width:100%;
}
body{
background-color: #0d1117;
color:#fef;
padding: 0% 10%;
line-height: 200%;
}
h1{
font-size:2em;
text-align: center;
padding: 10px;
}
p, li{
font-size: 1.2em;
padding: 2px;
margin-top: 5px;
}
hr,h2{
margin-top:10px;
}
h2{
font-size:1.5em;
}
code{
background-color:rgba(110, 118, 129, 0.4);
padding: 2px 10px;
color: aquamarine;
border-radius: 5px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.sig{
color:orange;
}
.concepts{
color:orange;
font-weight: bold;
}