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
|
@import url('https://rsms.me/inter/inter.css');
@font-face {
font-family: "Iosevka";
src: url('https://cdn.rawgit.com/kaushalmodi/iosevka-mirror/v1.14.1/woff/iosevka-ss08-bolditalic.woff') format('woff');
font-style: bold-italic;
}
:root {
--cyan: #00ffff;
--pink: #ff00ff;
--black: #212121;
--light-black: #535353;
--white: #ffffff;
--dark-white: #d4d4d4;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--white);
color: var(--black);
padding: 0;
padding-top: 2rem;
text-align: center;
}
html {
font-size: 38px;
}
.posts {
width: 100%;
}
@media only screen and (min-width: 1080px) {
.posts {
width: 60%;
}
html {
font-size: 18px;
}
}
.posts {
text-align: left;
display: inline-block;
}
.post {
margin: 2rem;
}
hr {
color: var(--light-black);
}
.date {
font-weight: 400;
font-size: 0.8rem;
color: var(--light-black);
}
.separator {
margin: 0;
margin-top: 1rem;
margin-bottom: 1rem;
border-top: 1px solid var(--dark-white);
}
.black-circle {
margin:0 auto;
width: 10rem;
height: 10rem;
border: 0px solid transparent;
border-radius: 50%;
background-color: var(--black);
}
.heading {
margin:0 auto;
color: var(--black);
text-align: center;
font-size: 6rem;
font-family: 'Iosevka', monospace;
text-shadow: 0.25rem 0rem var(--cyan), -0.25rem 0rem var(--pink);
line-height: 8.5rem;
}
a, a:hover, a:visited, a:active {
text-decoration: none;
transition: ease 0.2s;
}
a:hover, a:active {
background-color: var(--dark-white);
}
.post-link {
color: var(--black);
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
text-decoration-skip: objects edges box-decoration;
}
.post-end-link, .post-end-link:hover, .post-end-link:visited, .post-end-link:active
{
text-decoration: none;
color: var(--light-black);
text-shadow: none;
font-size: 0.8rem;
}
.post-text {
font-size: 0.8rem;
}
pre, code {
background-color: var(--dark-white);
color: var(--black);
font-family: monospace;
}
pre {
padding: 1rem;
overflow: auto;
}
|