-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (54 loc) · 1021 Bytes
/
Copy pathstyles.css
File metadata and controls
72 lines (54 loc) · 1021 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
body {
background-color: rgb(41, 44, 51);
font-family: "Roboto Mono", monospace;
color: rgb(204, 204, 204);
margin-left: 1em;
display: flex;
flex-direction: column;
min-height: 100vh;
}
a {
color:#a1c281;
}
h1 {
color:rgb(204, 204, 204);
}
h2 {
color:rgb(210,115,120);
}
h3 {
color:rgb(201,156,110);
}
a:hover {
font-weight:900;
color:rgb(203,203,90);
}
.no-bullets ul {
list-style-type:none;
padding-inline-start:2em;
}
strong {
color:#608af7;
}
em {
color:rgb(94,99,111);
}
.pipe-color{
color:rgb(94,99,111);
}
.indentme {
padding-left: 2em;
}
footer {
text-align: center;
margin-top: auto;
}
.background-image-div {
background-image: url('/assets/ben.jpg');
background-repeat: no-repeat;
background-position: center; /* Centers the image */
background-size: contain;
/*background-size: cover; Scales the image to cover the entire container (may crop) */
height: 100vh;
background-color: black;
}