blob: f921b562ee6cf0a306728cc081e77ce09b77c86a (
plain) (
blame)
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
|
/* Homepage styling */
.dark {
background-color: #181818;
color: #e4e4ef;
}
.dark-link, .interblag-title {
color: #96a6c8;
}
.interblag-title {
text-decoration: none;
}
.entry-container {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
}
.entry {
margin-top: 5px;
margin-bottom: 5px;
padding-left: 5px;
text-decoration: none;
}
.entry:nth-child(odd) {
background: #282828;
}
.entry-description {
color: #e4e4ef;
}
.misc {
color: #73c936;
border-color: #73c936;
}
.blog {
color: #268bd2;
border-color: #268bd2;
}
.project {
color: #ff4f58;
border-color: #ff4f58;
}
.note {
color: #ffdd33;
border-color: #ffdd33;
}
|