-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor-style.css
71 lines (63 loc) · 1.48 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
#navigation{
-webkit-user-select: none;
text-align: center;
color: white;
margin: 0px;
padding: 5px;
width: auto;
display: block;
margin-top:-10px;
height: 18px;
-webkit-border-bottom-left-radius: 12px;
-webkit-border-bottom-right-radius: 12px;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(162, 177, 207)), to(rgb(120, 138, 177)));
}
#navigation li{
display: inline;
text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
}
#navigation li a{
cursor: default;
}
#HTMLorText{
text-shadow: rgba(255,255,255,0.5) 0px 1px 1px;
-webkit-user-select: none;
cursor: default;
position: absolute;
color: white;
background-color: rgba(0,0,0,0.8);
-webkit-border-radius: 4px;
top:3px;
left: 20px;
padding: 0px 10px;
border-top: 1px solid rgb(145, 160, 192);
}
#HTMLorText:hover{
background-color: rgba(0,0,0,0.65);
}
#errors{
-webkit-user-select: none;
cursor: default;
background-color: #bb1122;
border: 4px solid #bbb;
text-shadow: rgba(0,0,0,0.5) 0px 1px 1px;
color: white;
-webkit-border-radius: 4px;
-webkit-box-shadow: rgba(0, 0, 0, .2) 0px 3px 4px;
}
#editableContent{
-webkit-user-modify: read-write-plaintext-only;
outline: none;
}
.htmlmode{
font-family: Monaco, Lucida Console, monospace;
color: #333;
font-size: 13px;
line-height: 16px;
white-space: pre;
word-wrap: break-word;
}
.keyword { color: #8b0053 }
.string { color: #a00000 }
.number { color: #2900ff }
.comment { color: #007215 }