-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhtmlpaste.css
367 lines (317 loc) · 6.1 KB
/
htmlpaste.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700);
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
.cf {
*zoom: 1;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.right{
float: right;
}
body {
background-color: #f3f4f5;
font-family: Roboto,sans-serif;
margin: 0 auto;
font-size: 14px;
line-height: 1.4;
color: #333;
}
header {
overflow: hidden;
padding: 10px 30px 0;
}
a,
a:visited {
font-weight: 700;
color: #4A90E2;
text-decoration: none;
}
.header-logo{
margin: 10px auto;
text-align: center;
width: 300px;
}
h1 {
float: left;
font-size: 3em;
margin: 12px 0 0;
text-align: center;
}
h2 {
color: #424242;
margin-bottom: 8px;
margin-top: 5px;
}
.col {
color: #424242;
padding: 30px 15px;
}
.col-container{
border-width: 0;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
background-color: #fff;
border-radius: 4px;
padding: 20px 30px 30px;
}
#output-container{
border-radius: 0 3px 3px 3px;
}
#input, textarea {
width: 100%;
height: 600px;
margin: 0;
padding: .5em;
overflow: auto;
border: none;
background-color: #fff;
font-family: courier, monospace;
font-size: inherit;
color: inherit;
}
#input {
margin: 0;
height: 600px;
}
.toolbar {
display: none;
padding-top: 5px;
padding-bottom: 5px;
background-color: #e6e6e6;
}
#output-header a {
border-radius: 3px 3px 0 0;
color: #757575;
display: inline-block;
margin-bottom: 0;
margin-top: 0px;
padding: 10px 14px;
-o-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
}
#output-header a:hover {
background: #eeeeee none repeat scroll 0 0;
text-decoration: none;
}
.copy-clipboard{
-o-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
opacity: 0.6;
}
.copy-clipboard:hover{
opacity: 0.8;
}
.copy-clipboard {
background: transparent none repeat scroll 0 0;
border: medium none;
font-size: 12px;
height: 27px;
padding: 2px 10px 0;
}
@media (min-width: 768px) {
body {
font-size: 14px;
}
.col {
float: left;
width: 50%;
padding: 0 15px;
}
.row {
padding: 10px 15px 30px;
}
}
/* AD */
header a.menu-item {
font-size: 13px;
font-weight: normal;
margin-left: 20px;
}
header a.menu-item i{
font-size: 16px;
}
#motto {
clear: both;
font-size: 1.2em;
}
footer {
background: #212121;
padding: 40px 80px ;
width: 100%;
font-size: 15px;
text-align: center;
color: white;
/* position:fixed; */
/* bottom:50px; */
}
footer p{
max-width: 800px;
margin: 0 auto;
}
img.avatar {
border-radius: 40px;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
width:72px;
height:72px;
margin: 0 0 10px 0;
}
.subtitle{
clear: both;
font-size: 19px;
margin: 7px auto 30px;
max-width: 600px;
padding-top: 10px;
text-align: center;
}
img#logo {
float: left;
height: auto;
max-height: 80px;
}
@media (max-width: 640px) {
img#logo {
padding: 20px 5%;
width: 90%;
max-width: 400px;
}
}
#output-header-textile:after, #output-header-jira:after {
font-size: 50%;
vertical-align: super;
content: " Beta";
color: red;
-o-transition: color 0.3s linear;
-moz-transition: color 0.3s linear;
-khtml-transition: color 0.3s linear;
-webkit-transition: color 0.3s linear;
-ms-transition: color 0.3s linear;
transition: color 0.3s linear;
}
#output-header-textile.active:after, #output-header-jira.active:after {
color: white;
}
#output-header a.active {
color: #ffffff;
background: #4a90e2;
}
/* Redactor hacks */
#output-container .redactor_toolbar {
font-size: inherit !important;
}
#output-container .redactor_toolbar li {
/* padding-top: 10px !important; */
line-height: 1.8em;
}
#output-container .redactor_toolbar li div {
margin-left: 3px;
margin-top: 2px;
font-size: 12px;
}
#output-container .redactor_toolbar li div input {
margin-right: 5px;
}
#output-container.redactor_box textarea {
padding: 14px;
}
#output-container .output-toolbar {
display: none;
}
#output-container .output-toolbar.active {
display: block;
}
.social{
font-size: 2em;
padding: 1em 0 0;
}
.social ul{
margin: 0;
padding: 0;
}
.social li{
display: inline-block;
padding: 0 0.2em;
}
.social a{
-o-transition: color 0.3s linear;
-moz-transition: color 0.3s linear;
-khtml-transition: color 0.3s linear;
-webkit-transition: color 0.3s linear;
-ms-transition: color 0.3s linear;
transition: color 0.3s linear;
}
a:hover{
text-decoration: underline;;
}
footer a:hover{
color: white;
}
.redactor_box {
border-radius: 3px;
}
.redactor_toolbar li {
padding: 6px 1px 8px 3px !important;
}
.redactor_toolbar{
background: #eeeeee none repeat scroll 0 0;
border-bottom: medium none;
height: 39px !important;
}
#output{
background: #fff none repeat scroll 0 0;
border-color: transparent;
border-image: none;
border-radius: 0 0 3px 3px;
border-style: dashed none solid;
border-width: 1px 0;
box-shadow: none;
color: #666666;
display: block;
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
font-size: 14px;
margin: 0;
outline: 0 none;
padding: 10px;
width: 100%;
}
.redactor_toolbar li.redactor_separator {
border-left: 1px solid #e5e5e5;
border-right: 1px solid #eee;
height: 40px;
margin: 0 2px 0 11px !important;
}
.redactor_toolbar li a {
-o-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-khtml-transition: opacity 0.3s linear;
-webkit-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
opacity: 0.5;
}
.redactor_toolbar li a:hover {
background-color: transparent;
border-color: transparent;
opacity: 1;
outline: medium none;
}
#output-container.redactor_box div#setting-html-tidy-wrapper {
opacity: 0.6;
}