This repository has been archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patheditor-style.css
76 lines (72 loc) · 1.58 KB
/
editor-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
@charset "UTF-8";
/* ------------------ Font Embed ------------------ */
@font-face {
font-family: 'Siyam Rupali';
src: url('fonts/SiyamRupali.eot?version=1.070');
src: local('Siyam Rupali'), url('fonts/SiyamRupali.woff?version=1.070') format('woff'), url('fonts/SiyamRupali.ttf?version=1.070') format('truetype');
font-style: normal;
}
body{
font-family: 'Siyam Rupali', Vrinda, Cambria, Georgia, serif;
font-size: 17px;
line-height: 1.5;
color: #333;
vertical-align: baseline;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{
font-weight: 500;
margin-top: 20px;
margin-bottom: 10px;
}
h1{ font-size: 36px }
h2{ font-size: 30px }
h3{ font-size: 24px }
h4{ font-size: 18px }
h5{ font-size: 14px }
h6{ font-size: 12px }
a{
color: #2f6bb3;
text-decoration: none;
}
a:hover{
color: #1f4776;
}
blockquote{
margin-left: 20px;
margin-bottom: 20px;
padding: 10px 20px;
font-size: 17.5px;
border-left: 5px solid #999;
}
pre{
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
code{
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
kbd{
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 3px;
-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}