-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
54 lines (41 loc) · 777 Bytes
/
Copy pathstylesheet.css
File metadata and controls
54 lines (41 loc) · 777 Bytes
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
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:400,700");
html, body {
font-family: 'Roboto Mono', sans-serif;
background: #272822;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
line-height: 150%; }
h1, h2, h3, h4, h5, h6 {
color: #75715e; }
a {
text-decoration: none;
color: #66d9ef; }
p {
font-style: italic;
color: #75715e; }
h1 {
font-size: 24pt;
color: #f92672; }
h2 {
color: #a6e22e; }
h3 {
color: #fd971f; }
h1::before {
content: '# '; }
h2::before {
content: '## '; }
h3::before {
content: '### '; }
p::before {
content: '> '; }
section {
max-width: 800px; }
section#social,
header {
width: 100%; }
footer {
color: #75715e;
padding: 15px 0px;
width: 100%; }