-
Notifications
You must be signed in to change notification settings - Fork 6
/
styles.css
65 lines (65 loc) · 1.18 KB
/
styles.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
body {
overflow: hidden;
margin: 0px;
padding: 0px;
background: white;
}
#header {
width: 800px;
height: 35px;
}
#editor {
width: 800px;
height: 500px;
}
#runJavascript {
padding: 7px 10px;
border: 1px outset gray;
font-weight: bold;
font-size: 12px;
display: inline-block;
cursor: pointer;
background: green;
color: white;
text-decoration: none;
border-radius: 2px;
}
#runToggleOnHost {
padding: 7px 10px;
font-weight: bold;
font-size: 12px;
display: inline-block;
color: black;
float: right;
text-decoration: none;
}
#runToggleOnHost:hover, #chkToggleOnHost_span {
cursor: pointer;
}
#libraryDropdownContainer {
float:right;
margin:8px 10px 0 0;
}
#help_a {
font-weight: bold;
padding: 2px 10px;
text-decoration: none;
color: red;
}
#lblUpdated {
display: none;
background: yellow;
color: black;
padding: 5px 10px;
position: absolute;
left: 24%;
top: 4px;
z-index: 999;
border-radius: 7px;
}
#regexMatchHost {
width: 300px;
padding: 2px;
border-radius: 3px;
border: 1px solid #cccccc;
}