-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
105 lines (89 loc) · 1.84 KB
/
Copy patheditor.css
File metadata and controls
105 lines (89 loc) · 1.84 KB
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
/* Here's some CSS defaulting! Thanks Tantek Celik :) */
:link,:visited { text-decoration:none; }
ul,ol { list-style:none }
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }
a img,:link img,:visited img { border:none }
address { font-style:normal }
/* Here's the CSS for the editor */
#editor form {
background-color: #fff;
}
#editor:hover {
cursor:move;
}
#editor {
position: absolute;
bottom: 10px;
right: 10px;
width: 350px;
margin: 30px;
font: 14px/18px 'Lucida Grande', Helvetica, sans-serif;
font-weight: normal;
color: #000;
}
#editor a {
color: #347489;
}
pre::-webkit-scrollbar {
height: 1ex;
}
pre::-webkit-scrollbar-thumb:horizontal{
background: rgba(0, 0, 0, .2);
}
#editor .tabnav {
margin: 0 0 2px 10px;
padding: 0;
font-size: 12px;
}
#editor .tabnav li {
display: inline;
margin: 0;
padding: 0;
text-align: center;
padding: 4px 20px;
margin: 0 5px 0 0;
border: 2px solid #ccc;
background-color: #eee;
}
#editor .tabnav li a:hover {
text-decoration: none;
}
#editor .tabnav li:hover {
cursor:pointer;
}
#editor .tabnav li.active {
border-bottom: 2px solid #fff;
background-color: #fff;
}
#editor h2 {
font: 24px 'Helvetica', sans-serif;
padding: 0 0 8px 0;
}
#editor form {
border: 2px solid #ccc;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
padding: 20px;
}
#editor form textarea {
font: 13px Courier, monospace;
border: 1px solid #ccc;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
#editor .buttons {
text-align: right;
}
#editor form input {
border: 2px solid #ccc;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding: 7px 25px;
background-color: #fff;
color: #347489;
}