-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeAndCake Present.css
115 lines (93 loc) · 1.56 KB
/
CodeAndCake Present.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
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
/* Styles for both Print and Present */
/* Normalize https://necolas.github.io/normalize.css */
@import url(https://cdnjs.cloudflare.com/ajax/libs/normalize/4.0.0/normalize.min.css);
/* FONTS from Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:300,600);
@import url(https://fonts.googleapis.com/css?family=Lekton:400,400italic,700);
/* TYPOGRAPHY */
html
{
font-size: 18px;
}
body
{
font-family: 'Lekton', sans-serif;
line-height: 1.5;
color: rgb(68, 68, 68);
}
b
{
color: rgb(34, 34, 34);
}
body
{
padding: 2.5em 2em;
font-size: 2.5em;
}
p
{
margin-bottom: 1em;
}
h1,h2,h3,h4,h5
{
margin-top:4em;
margin-bottom:1em;
line-height:1.2;
}
h1, h2
{
border-bottom: none;
}
h3, h4, h5
{
font-weight:normal;
}
h1
{
font-size:6em;
}
h2
{
font-size:5em;
}
h3
{
font-size:4em;
}
h4
{
font-size:3em;
}
h5
{
font-size:2em;
}
/* CODE */
/* Prism http://prismjs.com/ */
@import url(prism.css);
pre, code
{
word-break: break-word;
}
kbd, code
{
font-family: 'Source Code Pro', monospace !important;
font-size: 83%;
font-weight: 300;
display: inline-block;
padding: .1rem .5rem .2rem !important;
vertical-align: middle;
border-radius: .3rem;
}
kbd
{
color: rgb(85, 85, 85);
background-color: rgb(252, 252, 252);
border: solid 1px rgb(204, 204, 204);
border-bottom-color: rgb(187, 187, 187);
box-shadow: inset 0 -1px 0 rgb(187, 187, 187);
}
code[class*="language-"]
{
color: rgb(102, 217, 239);
}