forked from clemos/try-haxe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
95 lines (85 loc) · 1.55 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
overflow-y:scroll;
padding-top:18px
}
.tab-content {
margin-bottom:18px;
}
.messages {
position: absolute;
width: 100%;
}
.span6 {
position: relative;
}
.hx-options {
height:302px;
}
.js-output .js-run {
height:291px;
}
.js-run {
width:100%;
height:100%;
}
.radio {
padding-left: 4px;
margin-right: 18px;
}
.CodeMirror .error {
background-color:#F2DEDE;
}
.CodeMirror {
line-height:1.2em;
border: 1px solid #DDD;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
box-shadow: 0 1px 1px rgba(0,0,0,0.075);
}
/* from rubyblue */
.CodeMirror-completions {
background:#fff;
border:4px solid #fff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.075);
box-shadow: 0 1px 1px rgba(0,0,0,0.075);
z-index:1501;
}
.CodeMirror-completions select,
.CodeMirror-completions option {
background:#fff;
color:#333;
font-family:monospace;
}
.span-fb, .span-plusone, .span-twitter {
padding:8px;
}
.fullscreen-source .js-source,
.fullscreen-runner .js-run {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#fff;
z-index:1500;
margin:0;
padding:0;
border:0;
}
body.fullscreen-source,
body.fullscreen-runner {
overflow:hidden;
}
.fullscreen-source .CodeMirror,
.fullscreen-source .CodeMirror-scroll {
height:100%;
border:0;
}
.CodeMirror-activeline-background {background: #e8f2ff !important;}