forked from tbranyen/backbone.layoutmanager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.css
More file actions
40 lines (37 loc) · 727 Bytes
/
Copy paththeme.css
File metadata and controls
40 lines (37 loc) · 727 Bytes
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
body {
padding: 20px;
}
script[contenteditable=true], script.template {
display: block;
white-space: pre;
border: 1px solid #CCC;
padding: 20px;
outline: none;
background: #000;
color: #FFF;
font-family: Courier New;
font-size: 16px;
padding-left: 0px;
border-radius: 10px;
max-width: 50%;
min-width: 820px;
position: relative;
margin-top: 70px;
}
script[contenteditable=true]:before {
content: "Source:";
position: absolute;
top: -30px;
z-index: 10;
color: #000;
font-family: Helvetica, Arial;
}
/* Hide templates by default. */
script.template:before {
content: "Template:";
position: absolute;
top: -30px;
z-index: 10;
color: #000;
font-family: Helvetica, Arial;
}