-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (83 loc) · 1.15 KB
/
style.css
File metadata and controls
83 lines (83 loc) · 1.15 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
html {
background-color: #EEE;
color: black;
font-family: Helvetica, Arial, sans-serif;
}
body {
background-color: white;
color: black;
}
body, html, input {
margin: 0;
padding: 0;
}
header, main {
margin: 0;
padding: 0 0.5rem;
}
h1 {
background-color: #EEE;
color: black;
margin: 0;
padding: 0.5rem;
text-align: center;
}
h2 .separator {
font-size: smaller;
}
h2 .subtitle {
font-size: smaller;
}
dl, dt, dd {
display: inline;
margin: 0;
}
dt {
font-size: smaller;
}
.description {
font-size: smaller;
}
.description p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.stars {
font-size: larger;
}
.thumb {
float: left;
margin-right: 0.5em;
max-width: 100%;
}
.misc {
background-color: white;
color: gray;
font-size: smaller;
}
.timeline {
clear: both;
width: 100%;
}
.timeline img {
height: 1em;
margin-top: 0.5em;
width: 100%;
}
li {
margin-top: 1.5em;
}
/* https://css-tricks.com/minimum-paragraph-widths/#aa-general-case-solution-using-pseudo-element */
li p:before {
content: "";
width: 10em;
display: block;
overflow: hidden;
}
footer {
background-color: #EEE;
color: black;
margin: 1rem 0 0;
padding: 0.5rem;
text-align: center;
}