blob: 6e87aaeed12cde0fa6110ef381dbe4ac8647773b (
plain)
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
138
139
140
141
142
143
|
.content {
display: flex;
flex-direction: column;
padding-top: 90px;
padding-left: 32px;
padding-right: 32px;
justify-content: center;
gap: 44px;
word-wrap:break-word;
align-items: center;
}
.navbar {
padding-left: 32px;
padding-right: 32px;
justify-content: center;
word-wrap:break-word;
align-items: center;
}
.main {
max-width: 700px;
width: 100%;
display: flex;
flex-direction: column;
}
.series {
font-size: 12px;
font-weight: 500;
text-decoration: underline
}
.series {
font-size: 12px;
font-weight: 500;
text-decoration: underline
}
.side {
display: flex;
flex-direction: column;
align-items: center;
}
.profilepic {
width: 150pt;
border-radius: 50%;
}
.flexrow {
display: flex;
flex-direction: row;
align-items: center;
}
time {
font-size: 12px
}
.tag {
background-color: #A0A0A0;
padding: 4px;
margin-right: 2px;
font-size: 12px;
}
@media (max-width: 500px) {
.tagcontainer{
display: none;
}
}
.posttitle {
font-size: 19px;
font-weight:500;
text-decoration: underline;
}
nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
position: fixed;
height: 90px;
font-size: 30px;
background-color: #C0C0C0;
z-index: 1000;
}
.socials {
font-size: 15px;
text-decoration: none;
font-weight: 600;
text-decoration: underline;
padding-right: 4px;
}
pre {
background: #f4f4f4;
border: 1px solid #ddd;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}
a,a:visited{
color: black;
text-decoration: none;
}
p>a{
text-decoration: underline;
font-weight: 600;
}
code{
font-size: 15px;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: lightgray
}
.title {
font-weight: 600;
}
|