-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (85 loc) · 1.54 KB
/
style.css
File metadata and controls
97 lines (85 loc) · 1.54 KB
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
/* Page, navigation, and footer */
body {
background-color: #bab3b6;
margin: 0.5em;
padding: 0;
text-align: center;
}
nav {
text-align: right;
}
nav a {
background-color: #3b3b3b;
border-radius: 1em;
color: #ffffff;
display: inline-block;
margin: 0 0.2em;
padding: 0.3em 1em;
text-decoration: none;
}
footer a {
color: #000000;
}
footer a.simple {
text-decoration: none;
}
footer a.simple:hover {
text-decoration: underline;
}
/* Biography */
div {
background-color: #ffffff;
display: inline-block;
font-size: 0.7em;
height: 11.5em;
margin: 0.5em;
opacity: 0.75;
padding: 0.8em 0.5em;
position: relative;
vertical-align: top;
width: 9em;
}
div h1 {
font-size: 1em !important;
}
div > p {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 40em;
}
p.special {
background-color: #3b3b3b;
border-radius: 1em;
color: #ffffff;
display: inline-block;
margin: 0;
padding: 0.3em 1em;
}
/* Diary */
main > h1 {
margin: 1.9em 0 0;
font-size: 1.5em;
}
h2 {
font-size: 1em;
font-weight: normal;
margin-bottom: 1em;
padding: 0;
}
p.diary {
background-color: #ffffff;
border-radius: 1em;
display: block;
font-family: monospace;
font-size: 1em;
hyphens: auto;
line-height: 2.2em;
margin: 0 auto 1.4em;
max-width: 30em;
padding: 1.7em 1.7em 1em;
position: relative;
text-align: justify;
opacity: 0.75;
width: 70%;
}