add link underlines

This commit is contained in:
Ben Harris 2018-09-21 15:55:11 -04:00
parent 08c06aab8b
commit 0870f2bf12
3 changed files with 16 additions and 14 deletions

View File

@ -28,7 +28,7 @@
<body>
<a href="https://git.tilde.team/meta/css">
<a href="https://tildegit.org/team/css">
<img style="position: absolute; top: 0; left: 0; border: 0;z-index:1001;" src="img/fork.png" alt="Fork me on GitHub">
</a>
@ -88,8 +88,8 @@
will make your website 1337.</p>
<p>To hack around with the source or contribute, check out the project on Github</p>
<p>
<a class="btn btn-lg btn-primary" href="https://git.tilde.team/meta/css" role="button">View on Github »</a>
<a class="btn btn-primary" href="https://git.tilde.team/meta/css" id="stars"></a>
<a class="btn btn-lg btn-primary" href="https://tildegit.org/team/css" role="button">View on Github »</a>
<a class="btn btn-primary" href="https://tildegit.org/team/css" id="stars"></a>
</p>
</div>
@ -789,7 +789,7 @@ end</pre>
<p>Created by
<a href="//brobin.me">Tobin Brown</a>. &copy; 2015</p>
<p>
<a href="https://git.tilde.team/meta/css">Forked</a> by
<a href="https://tildegit.org/team/css">Forked</a> by
<a href="https://tilde.team/~ben/">~ben</a>
</p>
</div>
@ -802,12 +802,10 @@ end</pre>
<!-- Github stars script -->
<script>jQuery(document).ready(function ($) {
$.getJSON("https://git.tilde.team/api/v1/repos/meta/css", function (data) {
$("#stars").text(data['stars_count'] + " stars");
});
});</script>
$.getJSON("https://tildegit.org/api/v1/repos/team/css", function (data) {
$("#stars").text(data['stars_count'] + " stars");
});
});</script>
</body>
</html>

View File

@ -21,6 +21,10 @@
}
}
a {
text-decoration: underline;
}
.btn-default { .btn-styles(@btn-default-bg); }
.btn-primary { .btn-styles(@btn-primary-bg); }
.btn-success { .btn-styles(@btn-success-bg); }

View File

@ -1,19 +1,19 @@
{
"name": "tildeteam-css",
"version": "1.0.0",
"version": "1.0.1",
"description": "a fork of brobin's h4x0r bootstrap theme, used by tilde.team",
"author": "Ben Harris <ben@tilde.team>",
"scripts": {
"build": "lessc less/hacker.less dist/hacker.css --clean-css=\"--s1 --advanced --compatibility=ie8\"",
"deploy": "scp dist/hacker.css ben@tilde.team:/var/www/tilde.team/public_html/css/.",
"deploy": "scp dist/hacker.css ben@tilde.team:/var/www/tilde.team/css/hacker.css",
"dev": "npm run build && light-server -s . -p 9000 -w \"index.html, **/*.less # npm run build\" -o"
},
"repository": {
"type": "git",
"url": "https://git.tilde.team/team/css"
"url": "https://tildegit.org/team/css"
},
"bugs": {
"url": "https://git.tilde.team/team/css/issues"
"url": "https://tildegit.org/team/css/issues"
},
"dependencies": {
"bootstrap": "3.3.7",