-
Notifications
You must be signed in to change notification settings - Fork 95
/
nice-text.html
78 lines (57 loc) · 1.13 KB
/
nice-text.html
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
---
layout: default
---
<div class="pretty-text">
<h1>{{ page.title }}</h1>
{{ content }}
</div>
<style>
.pretty-text {
margin-top: 100px;
margin-bottom: 100px;
padding-left: 30px;
padding-right: 30px;
text-align: justify;
}
.pretty-text p {
line-height: 1.8;
padding-bottom: 80px;
}
.pretty-text h1 {
color: darkred;
font-size: 40px;
}
.pretty-text h2 {
color: darkred;
font-size: 30px;
margin-top: 60px;
}
.pretty-text h3 {
color: darkred;
}
.pretty-text a {
color: darkred;
}
.pretty-text img {
border: 1px solid #ddd;
border-radius: 8px;
padding: 5px;
width: 400px;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.pretty-text img:hover {
box-shadow: 0 0 3px 1px rgba(0, 140, 186, 0.5);
}
pre{
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
margin-bottom: 10px;
padding: 5px;
background-color: #eee;
width: 750px!ie7;
padding-bottom: 20px!ie7;
}
</style>