Commit fc1deec5f55b99d3ee40621cbbc25d4a774dc318
Exists in
master
and in
6 other branches
Merge branch 'master' into staging
Showing
2 changed files
with
30 additions
and
12 deletions
Show diff stats
... | ... | @@ -0,0 +1,27 @@ |
1 | +## Development | |
2 | + | |
3 | +npm install | |
4 | +bower install | |
5 | +npm install -g gulp | |
6 | + | |
7 | +```bash | |
8 | +# dev with staging data | |
9 | +gulp serve --staging | |
10 | + | |
11 | +# dev with production data | |
12 | +gulp serve --production | |
13 | +``` | |
14 | + | |
15 | +##### Tools | |
16 | + | |
17 | +- [generator-gulp-angular](https://github.com/Swiip/generator-gulp-angular) | |
18 | +- Angular | |
19 | + - angular-animate | |
20 | + - angular-cookies | |
21 | + - angular-touch | |
22 | + - angular-sanitize | |
23 | + - angular-ui-router | |
24 | +- gulp | |
25 | +- JS old style (no CoffeeScript or ES6 or etc.) | |
26 | +- HTML pure (no JADE or HBS or etc.) | |
27 | +- Bootstrap 3 | ... | ... |
src/app/index.scss
... | ... | @@ -120,26 +120,17 @@ body { |
120 | 120 | border-right: 0; |
121 | 121 | border-top: 0; |
122 | 122 | border-radius: 6px; |
123 | + background-color: #5e739d; | |
124 | + border-bottom: 3px solid #45506e; | |
123 | 125 | |
124 | 126 | -webkit-transition: all $time ease-in-out; |
125 | 127 | -moz-transition: all $time ease-in-out; |
126 | 128 | -o-transition: all $time ease-in-out; |
127 | 129 | transition: all $time ease-in-out; |
128 | 130 | |
129 | - @each $category, $color in $categories { | |
130 | - .#{$category} & { | |
131 | - background-color: $color; | |
132 | - border-bottom: 3px solid map-get($categories-complementary-2, $category); | |
133 | - } | |
134 | - } | |
135 | - | |
136 | 131 | &:hover, |
137 | 132 | &:focus { |
138 | - @each $category, $color in $categories { | |
139 | - .#{$category} & { | |
140 | - background-color: map-get($categories-complementary-2, $category); | |
141 | - } | |
142 | - } | |
133 | + background-color: #45506e; | |
143 | 134 | } |
144 | 135 | |
145 | 136 | .contraste & { | ... | ... |