-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (78 loc) · 1.15 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
html,body {
margin:0;
padding:0;
width:100%;
height:100%;
background:#111;
}
.top {
position:absolute;
margin:auto;
top:0px;
bottom:0px;
left:0px;
right:0px;
width:800px;
height:480px;
}
.top textarea {
width:800px;
height:480px;
background:#000;
border:0px none;
color:#d80;
font:15px monospace;
}
.top textarea:focus {
outline-style: none;
}
.bottom {
background:#000;
position:absolute;
height:30px;
bottom:0px;
left:0px;
right:0px;
}
input[type='button'] {
background:#020;
color:#aa0;
border:1px solid #090;
margin-top:5px;
margin-left:10px;
cursor: pointer;
}
input[type='button']:hover {
background:#000;
border:1px solid #5f5;
}
input[type='button']:focus {
outline-style: none;
}
.output {
position:absolute;
margin:auto;
top:0;
bottom:0;
left:0;
right:0;
width:650px;
height:480px;
z-index:10;
border:1px solid #999;
}
.output > pre {
overflow-y:auto;
width:650px;
height:480px;
font:9px monospace;
background:#444;
color:#fa0;
margin:0;
}
.output button {
background:#222;
border:1px solid #999;
color:#fa0;
border-radius:5px;
}