-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.css
More file actions
130 lines (106 loc) · 1.86 KB
/
Copy pathbasic.css
File metadata and controls
130 lines (106 loc) · 1.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
font-family: "Source Sans Pro", "Calibri", "Helvetica", sans-serif;
font-weight: 200;
font-size: 1.4em;
line-height: 1.6em;
margin: 0;
font-size: calc(.6vmax + .8em);
}
h1, h2, h3, h4, h5, h6 {
font-family: "Gentium Basic", serif;
margin: 0;
text-transform: uppercase;
letter-spacing: .1em;
}
a, a#selected {
transition: color .2s ease-out;
color: #46e;
text-decoration: none;
}
a:hover {
color: gray!important;
}
header a, footer a {
color: inherit;
}
/*a {
color: inherit;
text-decoration: none;
}
a:hover, a#selected {
text-decoration: underline;
}*/
nav ul {
padding: 1em 0;
margin: 0;
}
nav li {
display: inline-block;
margin-right: 10%;
}
h1 a {
font-size: 1.2em;
line-height: 1.4em;
}
pre {
overflow: auto;
padding: 1em;
font-size: .8em;
line-height: 1.4em;
}
blockquote {
border-left: 5px solid #46e;
margin: 0;
padding: 0 1em;
}
article {
padding-top: 2em;
padding-bottom: 2em;
}
.site-intro {
padding-top: 2em;
padding-bottom: 1em;
}
.site-intro p,
.post-note {
max-width: 42rem;
margin: 0 auto;
}
.post-note {
margin-top: 1.5em;
padding: .9em 1.1em;
border-left: 5px solid #46e;
background: rgba(68, 102, 238, .08);
font-size: .9em;
line-height: 1.5em;
}
article header p {
color: dimgray;
}
article footer a::after {
content: "\00bb";
}
article header, body > footer {
text-align: center;
}
body > header, body > footer {
padding-top: 1em;
padding-bottom: 1em;
}
body > footer span {
margin: 0 5%;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 3px;
box-shadow: inset 0 0 1px rgba(0,0,0,.3);
background-color: #555;
}
.centered {
text-align: center;
}