-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
81 lines (68 loc) · 1.23 KB
/
style.css
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
body {
margin: 5% auto;
background: #f2f2f2;
color: #444444;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.8;
text-shadow: 0 1px 0 #ffffff;
max-width: 73%;
}
table {
border: 1px solid #444444;
}
th, td {
text-align: right;
padding: 5px 15px;
}
pre {
position: relative;
background-color: white;
padding: 10px;
overflow-x: scroll;
}
/* Inline code snippets (backticks) */
p > code {
background-color: white;
border: solid rgba(68, 68, 68, .5) 1px; /* 44 in hex; to set opacity */
padding: 1px 3px;
border-radius: 4px;
}
a {
border-bottom: 1px solid #444444;
color: #444444;
text-decoration: none;
}
a:hover {
border-bottom: 0;
}
h1.title {
font-size: 3.1em;
line-height: 1.4em;
}
header#title-block-header {
padding: 12em 2em;
border-bottom: 2px dotted #aaaaaa;
}
nav {
padding: 0 0 6em 0;
border-bottom: 2px dotted #aaaaaa;
}
@media (min-width: 480px) {
h1.title {
padding-left: 0;
text-align: left;
}
header .author {
text-align: leftt;
}
}
@media (min-width: 768px) {
h1.title {
text-align: center;
}
header .author {
text-align: center;
padding: 0 2em;
}
}