Skip to content
This repository has been archived by the owner on Jun 29, 2019. It is now read-only.

Commit

Permalink
fix the urls
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydpick committed Feb 3, 2016
1 parent 744e472 commit f5cc684
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions public/stylesheets/uphold.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@font-face {
font-family: 'robotoregular';
src: url('/font/Roboto-Regular-webfont.eot');
src: url('/font/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/font/Roboto-Regular-webfont.woff') format('woff'),
url('/font/Roboto-Regular-webfont.ttf') format('truetype'),
url('/font/Roboto-Regular-webfont.svg#robotoregular') format('svg');
src: url('font/Roboto-Regular-webfont.eot');
src: url('font/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('font/Roboto-Regular-webfont.woff') format('woff'),
url('font/Roboto-Regular-webfont.ttf') format('truetype'),
url('font/Roboto-Regular-webfont.svg#robotoregular') format('svg');
font-weight: normal;
font-style: normal;

Expand Down Expand Up @@ -49,19 +49,19 @@ td a {
}

td a.run {
background-image: url('/images/run.png');
background-image: url('images/run.png');
margin-right: 0;
margin-left: 10px;
float: right;
}

td a.running { background-image: url('/images/running.gif'); }
td a.ok { background-image: url('/images/ok.png'); }
td a.ok_no_test { background-image: url('/images/ok_no_test.png'); }
td a.bad { background-image: url('/images/bad.png'); }
td a.bad_tests { background-image: url('/images/bad_tests.png'); }
td a.bad_transport { background-image: url('/images/bad_transport.png'); }
td a.bad_engine { background-image: url('/images/bad_engine.png'); }
td a.running { background-image: url('images/running.gif'); }
td a.ok { background-image: url('images/ok.png'); }
td a.ok_no_test { background-image: url('images/ok_no_test.png'); }
td a.bad { background-image: url('images/bad.png'); }
td a.bad_tests { background-image: url('images/bad_tests.png'); }
td a.bad_transport { background-image: url('images/bad_transport.png'); }
td a.bad_engine { background-image: url('images/bad_engine.png'); }

ul {
padding-top: 10px;
Expand Down
4 changes: 2 additions & 2 deletions views/layout.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<title>Uphold</title>
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="/stylesheets/normalize.min.css">
<link rel="stylesheet" href="/stylesheets/uphold.css">
<link rel="stylesheet" href="stylesheets/normalize.min.css">
<link rel="stylesheet" href="stylesheets/uphold.css">
</head>
<body>
<%= yield %>
Expand Down

0 comments on commit f5cc684

Please sign in to comment.