๐Ÿ“ฆ yochem / abel

๐Ÿ“„ style.css ยท 81 lines
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
81html {
	background-color: #1b1b1b;
	min-height: 100vh;
	font-family: 'Times New Roman', Cambria,serif;
	font-size: 1.1em;
	overflow-x: hidden;
}

body {
	color: #fff;
	max-width: 80ch;
	margin: 0 auto;
}

#email {
	font-size: large;
	margin-top: 4px;
}

a {
	color: inherit;
}

a[href=''] {
	cursor: default;
}

blockquote {
	border-left: 3px solid grey;
	margin: 1.5em 1em;
	padding: 0 10px;
}

hr {
	border-top: grey solid 1px;
	border-bottom: none;
}

main {
	padding-bottom: 10%;
}

article p {
	margin: 0;
}

a:link,
a:active,
a:visited,
a:hover {
	color: inherit;
}

a.nodecoration {
	text-decoration: none;
}

h3 {
	font-size: 1em;
	margin-bottom: 0.3em;
}

img {
	max-width: 80%;
	display: block;
	margin: 0 auto;
}

.metadata {
	color: lightgrey;
	font-style: italic;
}

@media only screen and (max-width: 860px) {
	body {
		margin-left: 5%;
		margin-right: 5%;
		margin-bottom: 10%;
	}
}