-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (100 loc) · 2.44 KB
/
style.css
File metadata and controls
110 lines (100 loc) · 2.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
*, *::after, *::before {
margin: 0;
padding: 0;
box-sizing: inherit; }
html {
font-size: 62.5%;
font-family: 'Open Sans', sans-serif !important;
font-weight: 400 !important;
color: #555 !important;
box-sizing: border-box; }
@media only screen and (max-width: 1200px) {
html {
font-size: 56.25%; } }
@media only screen and (max-width: 900px) {
html {
font-size: 50%; } }
ul, li {
list-style: none; }
a {
text-decoration: none; }
.main-doc {
position: absolute;
margin-left: 31rem;
padding: 2rem;
margin-bottom: 11rem; }
.fa-x {
margin-left: 1rem;
margin-right: 0; }
code {
display: block;
text-align: left;
white-space: pre;
position: relative;
word-break: normal;
word-wrap: normal;
line-height: 2;
background-color: #000;
color: #fff;
font-size: 2rem;
padding: 1.5rem;
margin: 1rem;
border-radius: 0.5rem; }
pre {
color: #fff; }
.special {
padding-left: 5rem !important; }
.navbar {
position: fixed;
min-width: 29rem;
top: 0px;
left: 0px;
width: 30rem;
height: 100%;
border-right: solid;
border-color: rgba(0, 22, 22, 0.4); }
.navbar__header {
padding: 1.5rem;
border-bottom: 1px solid #555; }
.navbar__header h2 {
text-align: center;
margin: 0;
color: #555;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 2.7rem; }
.navbar ul {
height: 88%;
overflow-y: auto;
overflow-x: hidden; }
.navbar ul li {
padding: 2rem;
text-align: left; }
.navbar ul li:not(:last-child) {
border-bottom: 1px solid #555; }
.navbar__link:link, .navbar__link:visited {
color: inherit;
text-align: center;
font-family: inherit;
font-size: 1.7rem; }
.main-section {
margin-bottom: 8rem; }
.main-section header {
text-align: left;
color: #555;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 3rem;
padding: 1.5rem; }
.main-section article p, .main-section article li {
padding: 1.2rem 3rem;
font-size: 1.6rem; }
.main-section article p a, .main-section article p a:link, .main-section article p a:visited, .main-section article li a, .main-section article li a:link, .main-section article li a:visited {
color: #555;
opacity: 0.8; }
.main-section article p a:hover, .main-section article li a:hover {
opacity: 1; }
.main-section article i {
font-size: 1.6rem;
padding: 0;
margin-right: 1rem; }