aboutsummaryrefslogtreecommitdiff
path: root/src/static
diff options
context:
space:
mode:
Diffstat (limited to 'src/static')
-rw-r--r--src/static/avatar-512x512.pngbin0 -> 244569 bytes
-rw-r--r--src/static/avatar-64x64.pngbin0 -> 16769 bytes
-rw-r--r--src/static/style.css116
3 files changed, 116 insertions, 0 deletions
diff --git a/src/static/avatar-512x512.png b/src/static/avatar-512x512.png
new file mode 100644
index 0000000..fc34eee
--- /dev/null
+++ b/src/static/avatar-512x512.png
Binary files differ
diff --git a/src/static/avatar-64x64.png b/src/static/avatar-64x64.png
new file mode 100644
index 0000000..1406f46
--- /dev/null
+++ b/src/static/avatar-64x64.png
Binary files differ
diff --git a/src/static/style.css b/src/static/style.css
new file mode 100644
index 0000000..efb65c0
--- /dev/null
+++ b/src/static/style.css
@@ -0,0 +1,116 @@
1body {
2 line-height: 150%;
3 margin-bottom: 100px;
4}
5
6main {
7 max-width: 680px;
8 padding: 20px 30px;
9}
10
11nav {
12 margin-bottom: 50px;
13}
14
15nav a {
16 display: inline-block;
17 margin-right: 20px;
18}
19
20h1 {
21 font-size: 280%;
22 line-height: initial;
23}
24
25h2 {
26 font-size: 200%;
27 line-height: initial;
28}
29
30h3 {
31 font-size: 160%;
32 line-height: initial;
33}
34
35img {
36 max-width: 100%;
37 margin: 30px auto;
38 display: block;
39}
40
41ul.article-list li {
42 margin-bottom: 10px;
43}
44
45ul.article-list time {
46 display: inline-block;
47 min-width: 120px;
48}
49
50article .info {
51 font-style: oblique;
52}
53
54pre {
55 overflow: auto;
56}
57
58table {
59 width: 100%;
60}
61
62table, th, td {
63 border: 1px solid black;
64 text-align: left;
65}
66
67th, td {
68 padding: 5px 10px;
69}
70
71::selection {
72 background: #ff0;
73 color: #000;
74}
75
76::-moz-selection {
77 background: #ff0;
78 color: #000;
79}
80
81@media only screen and (max-width:480px) {
82 nav {
83 text-align: center;
84 margin-bottom: initial;
85 }
86
87 nav a {
88 margin-bottom: 10px;
89 }
90
91 ul.article-list {
92 padding-left: 20px;
93
94 }
95
96 ul.article-list li {
97 margin-bottom: 20px;
98
99 }
100
101 ul.article-list a {
102 display: block;
103 }
104
105 h1 {
106 font-size: 220%;
107 }
108
109 h2 {
110 font-size: 180%;
111 }
112
113 h3 {
114 font-size: 160%;
115 }
116}