blob: d7878402ee842619d75703facc3aa32c756a405c (
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
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
|
html {
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
}
body {
color: #333;
margin: 1em auto 2em auto;
max-width: 43em;
padding: 0 1em;
font-family: "PT Sans", "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
}
a {
color: #0074D9
}
a:visited {
color: #941352
}
blockquote {
border-left: 3px solid #ccc;
padding-left: 10px;
}
dt {
font-weight: bold;
}
header .subtitle {
margin-top: -1em;
margin-bottom: 21.44px;
}
.bloglist p:nth-of-type(2) {
margin-top: -8px;
}
header .date {
font-style: italic;
margin-bottom: 21.44px;
}
footer .date {
float: right;
}
footer {
font-style: italic;
font-size: 14px;
margin-top: 32px;
}
.logo {
float: right;
border-radius: 50%;
}
.ytembed {
width: 100%;
aspect-ratio: 16 / 9;
}
@media only screen and (max-device-width : 667px) {
.logo {
max-width: 66px;
}
footer .date {
float: none;
}
}
@media print {
.navbar {
display: none !important;
}
}
pre {
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
font-family: monospace;
line-height: 1.2;
padding: 8px;
white-space: pre;
word-wrap: normal;
}
.sourceCode {
overflow: auto;
}
details {
font-size: 87.5%;
margin: 0 1em;
}
.redacted {
background: black;
color: black;
cursor: default;
}
.right {
float: right;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
object-fit: contain;
}
|