Commit 2c9a62f5b8f6dd5069c15a355ba3be1d5c8f3f05
1 parent
723e491c
Exists in
master
and in
6 other branches
Novo css
Showing
3 changed files
with
14 additions
and
25 deletions
Show diff stats
.gitignore
1 | 1 | *.swp |
2 | 2 | .sass-cache |
3 | +.bundle | |
4 | +node_modules/ | |
5 | +bower_components/ | |
6 | +sass/novo.scss | |
7 | +sass/bootstrap.scss | |
8 | +sass/novo.sass | |
3 | 9 | style.css |
4 | -sass/styles.scss | |
5 | 10 | style.css.map |
6 | -styles.css | |
7 | -styles.css.map | |
8 | 11 | gulpfile.js |
9 | -jade/ | |
10 | -node_modules/ | |
11 | 12 | package.json |
12 | -bower_components/ | |
13 | 13 | bower.json |
14 | -sass/bootstrap.scss | |
15 | -sass/novo.sass | |
16 | -css/bootstrap.css | |
17 | -html/ | |
18 | -novo.css | |
19 | -novo.html | |
20 | -sass/novo.scss | |
21 | -sass/novo | |
22 | -.bundle | |
23 | -proposal_detail/ | |
24 | -slick-theme.css | |
25 | -slick.css | |
26 | -bootstrap.css | |
27 | 14 | \ No newline at end of file |
15 | +novo.css | |
28 | 16 | \ No newline at end of file | ... | ... |
6.36 KB
index.html
... | ... | @@ -51,7 +51,8 @@ |
51 | 51 | 'http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', |
52 | 52 | 'http://fonts.googleapis.com/css?family=Open+Sans:400,300,700', |
53 | 53 | 'http://fonts.googleapis.com/css?family=Asap:400,700', |
54 | - 'style.css' | |
54 | + // 'style.css' | |
55 | + 'novo.css' | |
55 | 56 | ]; |
56 | 57 | head = document.getElementsByTagName('head')[0] |
57 | 58 | for(i = 0; i < css_files.length; i++){ |
... | ... | @@ -96,16 +97,16 @@ |
96 | 97 | <div class="clearfix"></div> |
97 | 98 | |
98 | 99 | <script id="proposal-template" type="text/x-handlebars-template"> |
99 | - <header> | |
100 | + <header class="clearfix"> | |
100 | 101 | <a id="display-contrast" href="#">Alto Contraste</a> |
101 | - <div class="login-block"> | |
102 | - <a href="#" class="login-register">Participe</a> | |
103 | - <a href="#" class="login-in">Entrar</a> | |
102 | + <div class="participar"> | |
103 | + <a href="#" class="button button-inline participe">Participe</a> | |
104 | + <a href="#" class="entrar">Entrar</a> | |
104 | 105 | </div> |
106 | + <h1><a href="#">{{article.title}}</a></h1> | |
105 | 107 | <div class="social top"> |
106 | 108 | {{#social_share "Dialoga Brasil" "Aqui suas ideias viram propostas e você ajuda a melhorar as ações do governo" "#"}}{{/social_share}} |
107 | 109 | </div> |
108 | - <h1><a href="#">{{article.title}}</a></h1> | |
109 | 110 | </header> |
110 | 111 | |
111 | 112 | <div id="content"> | ... | ... |