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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
body {
background-color: #1d2021;
color: #ebdbb2;
font-family: "Fira Code", "Courier New", Courier, monospace;
line-height: 1.8;
padding: 40px;
max-width: 900px;
margin: auto;
text-align: justify;
}
img {
max-width: 100%;
height: auto;
}
a {
color: #fabd2f;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #fe8019;
text-decoration: underline;
}
.menu-list {
list-style-type: none;
margin: 0;
padding: 0 20px;
overflow: hidden;
background: #3c3836;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
.menu-item {
float: left;
margin: 0 5px;
}
.menu-item a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition-delay: 200ms;
-moz-transition: all 200ms ease-in;
-webkit-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
}
.menu-item a:hover {
background: #d79921;
color: #282828;
}
.post-title {
color: #fabd2f;
font-size: 1.6em;
margin: 0;
}
.post-date {
font-size: 14px;
color: #bdae93;
margin-top: 10px;
}
p {
margin-bottom: 20px;
}
.post-divider {
border: 0;
height: 1px;
background: #d79921;
margin: 30px 0;
opacity: 0.7;
}
/* Archive Bottom Link */
#archive {
text-align: center;
margin-top: 40px;
font-size: 18px;
}
#content {
margin: 2em auto;
padding: 0 1em;
}
#postamble {
text-align: center;
margin-top: 50px;
font-size: 14px;
color: #bdae93;
opacity: 0.8;
}
/* Org Table */
table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px;
}
table tr:nth-child(even){background-color: #f2f2f2;}
table tr:hover {background-color: #ddd;}
table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #073642;
color: white;
}
/* Org block of code */
.org-src-container {
background-color: #3c3836;
padding: 0 12px;
border-radius: 5px;
overflow: auto;
margin: 10px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.org-src-container pre {
color: #f8f8f2;
font-family: "Fira Code", "Courier New", monospace;
font-size: 14px;
line-height: 1.5;
white-space: pre-wrap;
}
.org-src-container pre::before {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
@media screen and (max-width: 780px) {
body {
padding: 0;
}
}
|