-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstyles.scss
137 lines (113 loc) · 1.8 KB
/
styles.scss
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
---
# Frontmatter
---
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Lato:300,400,700');
html, body {
overflow-x: hidden;
font-family: 'Lato', sans-serif;
display: flex;
flex-direction: column;
}
.navbar {
.brand-logo {
padding: 0 10px;
}
ul li a {
text-transform: uppercase;
font-weight: 500;
}
}
.welcome {
.title {
padding: 5% 5% 0% 5%;
font-size: 6.5em;
font-weight: lighter;
display: block;
&:after {
content: "";
width: 85%;
margin: auto;
height: 2px;
margin-top: 10px;
display: block;
background-color: darkslateblue;
}
}
.description {
font-size: 1.2em;
padding: 0px;
}
}
.page-content {
margin: auto;
margin-bottom: 5%;
img {
display: block;
width: 95%;
height:100%;
padding: 2%;
margin: auto;
}
a {
color: limegreen;
font-weight: 500;
border-bottom: 2px solid transparent;
transition: all 0.5s ease;
&:hover {
border-bottom-color: limegreen;
}
}
h1, h2, h3, h4, h5, h6 {
margin-top: 8%;
}
p {
font-size: 3.2vh;
display: inline-block;
margin-top: 10px;
}
pre {
background-color: black;
padding: 2%;
text-align: left;
border-radius: 5px;
box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.5);
code {
font-family: 'Roboto Mono', monospace;
color: yellow;
font-size: 3.2vh;
}
}
ul, ol {
text-align: left;
li {
font-size: 3.2vh;
width: 95%;
margin: auto;
margin-top: 10px;
p {
display: inline;
}
}
}
}
.navbar-fixed {
z-index: 998 !important;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 2.5em;
}
h3 {
font-size: 2em;
}
h4 {
font-size: 1.5em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 0.8em;
}