1
1
html {
2
2
height : 100% ;
3
3
-webkit-font-smoothing : antialiased;
4
- -moz-osx-font-smoothing : grayscale;
4
+ -moz-osx-font-smoothing : grayscale;
5
5
}
6
6
body {
7
7
margin : 0 ;
@@ -23,7 +23,7 @@ a:hover{
23
23
border-bottom : 1px solid # 3fa9f5 ;
24
24
}
25
25
.wrapper {
26
- height : 100% ;
26
+ max- height: 100% ;
27
27
overflow : hidden;
28
28
}
29
29
.top-section {
@@ -62,7 +62,6 @@ h1 span{
62
62
float : left;
63
63
width : 100% ;
64
64
height : 100% ;
65
- overflow : hidden;
66
65
}
67
66
.tabs-section {
68
67
background-color : # e6e6e6 ;
@@ -104,9 +103,10 @@ h1 span{
104
103
float : left;
105
104
width : 100% ;
106
105
max-height : 100% ;
106
+ min-height : 100% ;
107
107
}
108
108
.notifications {
109
- display : none; /* TODO find a place*/
109
+
110
110
}
111
111
.code-container .left : after {
112
112
content : "" ;
@@ -122,6 +122,7 @@ h1 span{
122
122
float : left;
123
123
position : relative;
124
124
max-height : 100% ;
125
+ height : 100% ;
125
126
overflow : hidden;
126
127
}
127
128
.code-container label {
@@ -136,17 +137,15 @@ h1 span{
136
137
}
137
138
.code-container textarea {
138
139
width : 100% ;
139
- height : 80% ;
140
- overflow : hidden;
140
+ height : 100% ;
141
141
padding : 60px 30px 20px 30px ;
142
142
font-family : inherit;
143
143
font-size : 14px ;
144
144
color : # eee ;
145
145
background : none;
146
146
border : 0 ;
147
- max-height : 100% ;
148
147
-webkit-font-smoothing : antialiased;
149
- -moz-osx-font-smoothing : grayscale;
148
+ -moz-osx-font-smoothing : grayscale;
150
149
}
151
150
.code-actions {
152
151
width : 50px ;
@@ -164,7 +163,6 @@ h1 span{
164
163
margin : auto;
165
164
border-radius : 50% ;
166
165
text-align : center;
167
- overflow : hidden;
168
166
-webkit-transition : all 0.3s ease;
169
167
-moz-transition : all 0.3s ease;
170
168
transition : all 0.3s ease;
@@ -226,6 +224,30 @@ h1 span{
226
224
.code-actions .type .scss : after {
227
225
228
226
}
227
+ .notifications {
228
+ position : absolute;
229
+ background-color : # 333 ;
230
+ top : 20px ;
231
+ left : 0 ;
232
+ width : 99% ;
233
+ margin : auto;
234
+ z-index : 2 ;
235
+ padding : 0 ;
236
+ height : auto;
237
+ font-size : 14px ;
238
+ }
239
+ .notifications span {
240
+ padding : 0 10px ;
241
+ }
242
+ .notice {
243
+ color : orange;
244
+ }
245
+ .error {
246
+ color : red;
247
+ }
248
+ .success {
249
+ color : green;
250
+ }
229
251
230
252
/*
231
253
h6 { float:right; }
0 commit comments