1
1
@import " normalize" ;
2
- @import " helpers" ;
3
2
4
3
$html-bg : #3b6837 ;
5
4
$main-color : #383838 ;
@@ -27,9 +26,9 @@ html, body { margin: 0; }
27
26
body {
28
27
font-family : " Helvetica Neue" ," Helvetica" ,Helvetica ,Arial ,sans-serif ;
29
28
font-size : 16px ;
30
- @include display- flex ;
31
- @include flex-direction ( column ) ;
32
- @include align-items ( center ) ;
29
+ display : flex ;
30
+ flex-direction : column ;
31
+ align-items : center ;
33
32
}
34
33
35
34
/* .ember-application is added by Ember after initial rendering */
@@ -42,13 +41,13 @@ body > div {
42
41
}
43
42
44
43
#main {
45
- @include display- flex ;
46
- @include flex-direction ( column ) ;
44
+ display : flex ;
45
+ flex-direction : column ;
47
46
48
47
margin-bottom : 10px ;
49
48
background-color : $main-bg ;
50
49
padding : 15px ;
51
- @include border-radius ( 10px ) ;
50
+ border-radius : 10px ;
52
51
box-shadow : 0px 0px 5px 2px #3b6837 ;
53
52
border : 5px solid #62865f ;
54
53
color : $main-color ;
@@ -58,9 +57,9 @@ body > div {
58
57
color : white ;
59
58
position : relative ;
60
59
height : 100px ;
61
- @include display- flex ;
62
- @include align-items ( center ) ;
63
- @include justify-content ( space-between ) ;
60
+ display : flex ;
61
+ align-items : center ;
62
+ justify-content : space-between ;
64
63
65
64
a {
66
65
color : white ; text-decoration : none ;
@@ -74,7 +73,7 @@ body > div {
74
73
}
75
74
76
75
.menu {
77
- @include flex-grow ( 2 ) ;
76
+ flex-grow : 2 ;
78
77
display : none ;
79
78
}
80
79
.menu ul .dropdown {
@@ -108,8 +107,8 @@ body > div {
108
107
min-width : 150px ;
109
108
}
110
109
form .search {
111
- @include display- flex ;
112
- @include flex-grow ( 1 ) ;
110
+ display : flex ;
111
+ flex-grow : 1 ;
113
112
}
114
113
@media only screen and (max-width : 820px ) {
115
114
form .search { display : none ; }
@@ -131,7 +130,7 @@ body > div {
131
130
background-repeat : no-repeat ;
132
131
background-position : 6px 6px ;
133
132
background-size : 14px 15px ;
134
- @include border-radius ( 15px ) ;
133
+ border-radius : 15px ;
135
134
}
136
135
137
136
form .search label {
@@ -206,7 +205,7 @@ span.loading {
206
205
text-align : center ;
207
206
margin : 0 0 10px 0 ;
208
207
padding : 10px ;
209
- @include border-radius ( 5px ) ;
208
+ border-radius : 5px ;
210
209
211
210
& .shown {
212
211
display : block ;
235
234
@media only screen and (max-width : 450px ) {
236
235
margin : 20px ;
237
236
.sep { display : none ; }
238
- @include display- flex ;
239
- @include flex-direction ( column ) ;
237
+ display : flex ;
238
+ flex-direction : column ;
240
239
241
240
a {
242
241
width : 50% ;
@@ -287,7 +286,7 @@ ul.dropdown {
287
286
list-style : none ;
288
287
z-index : 10 ;
289
288
overflow : hidden ;
290
- @include border-radius ( 5px ) ;
289
+ border-radius : 5px ;
291
290
292
291
li a {
293
292
font-size : 90% ;
0 commit comments