Commit d9d9708db3deaa3695b9195ca2a998b918c5ca2a

Authored by Leandro Santos
1 parent 923ec89e

fix path references

Showing 1 changed file with 6 additions and 5 deletions   Show diff stats
sass/style.scss
1 1 @font-face {
2 2 font-family: asap_bold_italic;
3   - src: url(../fonts/Asap-BoldItalic.ttf);
  3 + src: url(./fonts/Asap-BoldItalic.ttf);
4 4 }
5 5  
6 6 @font-face {
7 7 font-family: asap_bold;
8   - src: url(../fonts/Asap-Bold.ttf);
  8 + src: url(./fonts/Asap-Bold.ttf);
9 9 }
10 10  
11 11 @font-face {
12 12 font-family: asap_italic;
13   - src: url(../fonts/Asap-Italic.ttf);
  13 + src: url(./fonts/Asap-Italic.ttf);
14 14 }
15 15  
16 16 @font-face {
17 17 font-family: asap;
18   - src: url(../fonts/Asap-Regular.ttf);
  18 + src: url(./fonts/Asap-Regular.ttf);
19 19 }
20 20  
21 21 @import 'nav';
22 22 @import 'header';
23 23 @import 'proposal_categories';
24 24 @import 'proposal_group';
  25 +@import 'proposal_detail';
25 26 @import 'login';
26 27 @import 'footer';
27 28  
... ... @@ -48,7 +49,7 @@ h1 {
48 49  
49 50 #content {
50 51 padding-bottom: 150px;
51   - background: transparent url(../images/header.png) center bottom no-repeat;
  52 + background: transparent url(./images/header.png) center bottom no-repeat;
52 53 p {
53 54 font{
54 55 weight: lighter;
... ...