forked from chuckh/polymer-quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolymer-quill-styles-proplanr.html
92 lines (84 loc) · 2.78 KB
/
polymer-quill-styles-proplanr.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<link rel="import" href="../polymer/polymer.html">
<dom-module id="polymer-quill-styles-proplanr">
<template>
<style>
/*!
* Quill Editor v1.1.0
* Proplanr Styles
*/
:host ::content .ql-container {
box-sizing: border-box;
font-family: 'Raleway', sans-serif!important;
font-size: 16px!important;
height: 100%;
margin: 0px;
position: relative;
}
:host ::content .ql-editor li+li {
margin-top: 0.25em;
}
:host ::content .ql-editor .ql-video {
display: block;
max-width: 100%;
min-width: 640px;
min-height: 360px;
margin-left: auto;
margin-right: auto
}
:host ::content .ql-editor .ql-video.ql-align-center {
margin: 0 auto;
}
:host ::content .ql-editor .ql-video.ql-align-right {
margin: 0 0 0 auto;
}
:host ::content .ql-editor .ql-font-serif {
font-family: Georgia, Times New Roman, serif;
}
:host ::content .ql-editor .ql-font-monospace {
font-family: Monaco, Courier New, monospace;
}
:host ::content .ql-snow .ql-editor h1,
:host ::content .ql-snow .ql-editor h2,
:host ::content .ql-snow .ql-editor h3,
:host ::content .ql-snow .ql-editor h4,
:host ::content .ql-snow .ql-editor h5,
:host ::content .ql-snow .ql-editor h6 {
margin-top: 24px;
margin-bottom: 16px;
font-weight: 600;
line-height: 1.25;
}
:host ::content .ql-snow .ql-editor h1 {
padding-bottom: 0.3em;
font-size: 2.5em!important;
border-bottom: 1px solid #eee;
}
:host ::content .ql-snow .ql-editor h2 {
padding-bottom: 0.3em;
font-size: 2.0em!important;;
border-bottom: 1px solid #eee;
}
:host ::content .ql-snow .ql-editor h3 {
font-size: 1.5em!important;;
}
:host ::content .ql-snow .ql-editor h4 {
font-size: 1.25em!important;;
}
:host ::content .ql-snow .ql-editor h5 {
font-size: 1.0em!important;;
}
:host ::content .ql-snow .ql-editor h6 {
font-size: 0.85em!important;;
}
:host ::content .ql-snow .ql-editor a {
text-decoration: underline;
color: blue;
}
:host ::content .ql-snow .ql-editor code {
font-size: 85%;
padding-bottom: 2px;
padding-top: 2px;
}
</style>
</template>
</dom-module>