Skip to content

Commit d4b8a0c

Browse files
committed
Fixed images links
1 parent 23b002b commit d4b8a0c

File tree

7 files changed

+34
-9
lines changed

7 files changed

+34
-9
lines changed

.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "app/bower_components"
3+
}

.directory

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[Dolphin]
2+
Timestamp=2014,2,8,20,21,18
3+
Version=3
4+
5+
[Settings]
6+
HiddenFilesShown=true

.foreverignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.git
2+
**/app/assets/**
3+
**/app/views/**
4+
server.js
5+
Gulpfile.js
6+
**/log/**
7+
**/public/**

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.swp
2+
*.swo
3+
dist
4+
node_modules
5+
*.DS_Store
6+
log/
7+
npm-debug.log
8+
config/secrets.json
9+
public/js/core/models.js

app/css/less/main.less

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
/*! CSS Aplicacion tweets perdidos en el espacio */
55
body{
6-
background-image: url("/img/sky.jpg");
6+
background-image: url("img/sky.jpg");
77
background-repeat: no-repeat;
88
background-attachment: fixed;
99
background-position: center center;
@@ -50,7 +50,7 @@ body{
5050
margin-top: -10%;
5151
position: relative;
5252
.form-search{
53-
background: url("/img/ovni.png") no-repeat center top;
53+
background: url("img/ovni.png") no-repeat center top;
5454
width: 100%;
5555
height: 355px;
5656
position: relative;
@@ -88,7 +88,7 @@ body{
8888
}
8989
}
9090
.burble-information{
91-
background: url("/img/burble.png") no-repeat center top;
91+
background: url("img/burble.png") no-repeat center top;
9292
height: 140px;
9393
width: 294px;
9494
padding: 8px;
@@ -122,7 +122,7 @@ body{
122122
}
123123

124124
.message{
125-
background: url("/img/message.png") no-repeat center center;
125+
background: url("img/message.png") no-repeat center center;
126126
font-family: 'Open Sans', sans-serif;
127127
margin: 30% auto 0;
128128
height: 80px;

app/css/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/index.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
</head>
2727

2828
<body ng-app="tweetsApp" ng-controller="SearchTweetsCtrl">
29-
<div class="trees"><img src="/img/trees.png" alt=""></div>
30-
<div class="moon"><img src="/img/moon.png" alt=""></div>
29+
<div class="trees"><img src="img/trees.png" alt=""></div>
30+
<div class="moon"><img src="img/moon.png" alt=""></div>
3131
<div class="he ader-container">
3232
<header class="wrapper clearfix">
3333

@@ -50,7 +50,7 @@
5050
</div>
5151
</div>
5252
<div class="light">
53-
<img src="/img/light.png" alt="">
53+
<img src="img/light.png" alt="">
5454
</div>
5555
</div>
5656
<div id="tweets-container" class="tweets" ng-show="tweets">
@@ -63,7 +63,7 @@
6363

6464
<div class="footer-container">
6565
<div id="logo">
66-
<img src="/img/rapp.png" alt="">
66+
<img src="img/rapp.png" alt="">
6767
</div>
6868
</div>
6969
<script src="bower_components/angular/angular.js"></script>

0 commit comments

Comments
 (0)