-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.scss
79 lines (64 loc) · 972 Bytes
/
style.scss
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
@import "github_badge";
body {
font-family: sans-serif;
font-size: 11pt;
background: linear-gradient(in hsl longer hue 0deg, #f031 0 0);
> main {
max-width: 800px;
margin: 3em auto;
}
}
h1 {
text-shadow:
2px 2px #ef3550,
4px 4px #f48fb1,
6px 6px #7e57c2,
8px 8px #2196f3,
10px 10px #26c6da,
12px 12px #43a047,
14px 14px #eeff41,
16px 16px #f9a825,
18px 18px #ff5722;
}
h2 {
font-size: 13pt;
margin-top: 1.5em;
}
time {
color: gray;
font-size: 10pt;
font-weight: normal;
display: block;
}
%indented {
margin-left: 3em;
margin-top: 2em;
margin-bottom: 2em;
}
blockquote {
@extend %indented;
}
pre > code {
display: block;
white-space: pre-wrap;
@extend %indented;
}
table {
width: 100%;
* {
text-align: left;
}
th {
background-color: #ddd;
}
th, td {
padding: 0.25em;
&:first-of-type {
width: 20%;
}
&:last-of-type {
width: 30%;
}
}
}
@include github_badge( $color:#A00, $rotate:45deg );