-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.css
141 lines (110 loc) · 2.72 KB
/
editor.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.editor {
clear: both;
min-height: 100px;
margin: 5px 0;
padding: 5px;
border: 1px solid #acacac;
outline: none;
font-family: 'Lucida Grande', verdana, arial, sans-serif;
font-size: 12px;
}
.editor p {
margin: 0;
}
.editor_toolbar .toolbar_button {
float: left;
margin: 2px 5px;
}
.editor_toolbar .selected {
color: red !important;
}
#error {
font: 18px helvetica, arial, sans-serif;
color: red;
}
// Begin Jorge/Kevin changes
.container{
}
.container .header .header-content{
height: 50px;
background-color:#fff;
}
.container .header .toolbar-container{
height:27px;
background-color:whiteSmoke;
border-top:1px solid #E5E5E5;
border-bottom:1px solid #E5E5E5;
padding-left:100px;
padding-top: 4px;
}
.container .header .toolbar-container .button,
.container .header .toolbar-container .color-picker-icon,
.container .header .toolbar-container select{
margin-left: 10px;
}
.container .header .toolbar-container .color-picker-icon img,
.container .header .toolbar-container .button img{
vertical-align: bottom;
}
.container .header .toolbar-container .button.selected{
border:1px solid red;
}
.container .editor{
background-color: #E5E5E5;
text-align:center;
margin:0px;
}
.container .editor .content-wrapper{
width: 800px;
margin: 0px auto;
text-align: left;
}
.container .editor #content_editor{
width: 800px;
background-color:#fff;
min-height: 600px;
text-align: left;
padding: 2em 4em 2em 4em;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box;
}
.container .editor #content_editor font[size="1"] { font-size: 8pt; }
.container .editor #content_editor font[size="2"] { font-size: 10pt; }
.container .editor #content_editor font[size="3"] { font-size: 12pt; }
.container .editor #content_editor font[size="4"] { font-size: 14pt; }
.container .editor #content_editor font[size="5"] { font-size: 18pt; }
.container .editor #content_editor font[size="6"] { font-size: 24pt; }
.container .editor #content_editor font[size="7"] { font-size: 36pt; }
/*.container .editor #content_editor font[size="2"] { font-size: 10pt; }*/
.editor .note-section{
outline: 1px dashed #ccc;
padding:3px;
}
.bookmark-wrapper{
/*border: 1px solid red;*/
height:1px;
}
.bookmark-in-editor{
border:1px solid red;
margin-left:-165px;
width:100px;
background-color:red;
color:white;
padding: 3px 0px 3px 10px;
font-size:11px;
cursor:pointer;
margin-bottom: 1px;
}
#editor-nav-menu{
height: 200px;
width:200px;
right: 10px;
position:fixed;
top: 100;
padding-top: 5px;
padding-left: 5px;
background-color:#ccc;
border: 1px solid #000;
text-align:left;
}