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
|
// ==============================
// Post content
// ==============================
.post-content {
word-wrap: break-word;
@for $i from 1 through 6 {
h#{$i} {
font-weight: 400;
font-family: $global-serif-font-family;
}
}
a {
color: $theme-color;
word-break: break-all;
&:hover {
border-bottom: $content-link-border;
}
&.fancybox {
border: 0;
}
}
blockquote {
margin: 2em 0;
padding: 10px 20px;
position: relative;
color: rgba(#34495e, 0.8);
background-color: $content-blockquote-backgroud;
border-left: $content-blockquote-border-left;
box-shadow: 1px 1px 2px rgba(0,0,0,0.125);
p {
margin: 0;
}
}
img {
display: inline-block;
max-width: 100%;
}
> table {
max-width: 100%;
margin: 10px 0;
border-spacing: 0;
box-shadow: 2px 2px 3px rgba(0,0,0,.125);
th, td {
padding: 5px 15px;
border: 1px double $content-table-border-color;
}
}
@import 'code';
.post-summary {
margin-bottom: 1em;
}
.read-more {
.read-more-link {
color: $theme-color;
font-size: 1.1em;
font-family: $global-serif-font-family;
&:hover {
border-bottom: $post-readMore-border-bottom;
}
}
}
kbd {
display: inline-block;
padding: 0.25em;
background-color: #fafafa;
border: 1px solid #dbdbdb;
border-bottom-color: #b5b5b5;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #b5b5b5;
font-size: 0.8em;
line-height: 1.25;
font-family: "SFMono-Regular","Liberation Mono","Roboto Mono",Menlo,Monaco,Consolas,"Courier New",Courier,monospace;
color: #4a4a4a;
}
dl dt::after {
content: ':';
}
figure figcaption h4 {
color: #b5b5b5;
font-size: 0.9rem;
text-align: center;
}
.task-list {
list-style: none;
padding-left: 1.5rem;
}
}
|