-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
107 lines (88 loc) · 1.39 KB
/
main.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
96
97
98
99
100
101
102
103
104
105
106
107
html, body {
margin: 0;
padding: 0;
font: .9em Helvetica, Arial, sans-serif;
background: #272822;
color: #FFF;
height: 100%;
overflow: hidden;
}
a {
font-weight: 700;
color: #A6E22E;
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
h1, h2 {
padding: .4em;
margin: .6em -.6em;
background: #2f3129;
border-bottom: 2px solid #A6E22E;
}
h1 { margin-top: 0; }
#editor, #preview {
background: #272822;
float: left;
margin: 0;
border: 3px solid #2f3129;
width: 50%;
height: 100%;
overflow: auto;
}
#view-css3 {
display: none;
}
.ibox, #editor, #preview {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.ibox {
width: 50%;
float: left;
padding-bottom: 1.5em;
}
.bbox {
clear: both;
}
img, canvas {
outline: 1px solid #A6E22E;
border: 1px solid #272822;
}
#gif img, #sc canvas {
min-width: 50px;
min-height: 50px;
}
#sprite img {
max-width: 100%;
height: auto;
}
#gallery {
overflow: hidden;
}
#gallery img {
width: 50px;
height: 50px;
}
#gallery a {
float: left;
margin-right: 4px;
padding: 4px;
}
canvas {
cursor: pointer;
}
#input {
width: 100%;
height: 100%;
position: relative;
}
#editor .ace_editor .ace_sb {
overflow-y: auto;
}
#preview {
padding: 1.5em 2em;
}