This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (93 loc) · 1.65 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
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
html {
background: #ebeff1;
padding: 20px;
}
body {
background: #fff;
padding: 20px auto;
margin: 30px auto;
max-width: 900px;
border-width: 0 2px 2px 0;
border-color: #c7d4da;
border-style: solid;
color: #2A2A2A;
}
body,
.markdown-css {
font-family: Lora, serif;
}
a,
.markdown-css a {
color: #0C7AC4;
}
a:hover,
.markdown-css a:hover {
background: #0C7AC4;
color: white;
}
.markdown-css h1 {
font-weight: normal;
font-size: 48px;
margin-top: 40px;
}
.markdown-css h2,
.markdown-css h3 {
}
.markdown-css img + em {
color: #2A2A2A;
}
header,
footer {
padding: 20px;
}
header a {
padding: 12px 4px;
line-height: 2.8em;
}
header img {
margin-left: 8px;
}
.md-pages {
/* These are technically the same, but use both */
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
/* This is the dangerous one in WebKit, as it breaks things wherever */
word-break: break-all;
/* Instead use this non-standard one: */
word-break: break-word;
/* Adds a hyphen where the word breaks, if supported (No Blink) */
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.md-pages a {
text-decoration: underline;
}
.md-pages p img {
margin: 0 auto;
display: block;
}
/* for inline images - bold them - hack */
.md-pages em img {
display: inline;
}
.youtube-video-container {
position: relative;
overflow: hidden;
width: 100%;
margin-bottom: 20px;
}
.youtube-video-container::after {
display: block;
content: "";
padding-top: 56.25%;
}
.youtube-video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}