UPDATE #forkme

This commit is contained in:
salamimitpizza 2017-02-02 00:40:43 +01:00
parent 04fc373007
commit 1197aa1ec8
3 changed files with 21 additions and 4 deletions

View File

@ -10,9 +10,6 @@
<body> <body>
<div id="forkme">View on Github <i class="fa fa-github"></i></div> <div id="forkme">View on Github <i class="fa fa-github"></i></div>
<div class="suitcase">
<img src="public/suitcase.png" width="150" />
</div>
<div id="readme"> <div id="readme">
<h1 id="bestresumeever">best-resume-ever</h1> <h1 id="bestresumeever">best-resume-ever</h1>
<p>Build your best resume ever!</p> <p>Build your best resume ever!</p>
@ -40,6 +37,10 @@
<hr /> <hr />
<p>Icons made by <a href="http://www.flaticon.com/authors/vectors-market" title="Vectors Market">Vectors Market</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC 3.0 BY</a></p> <p>Icons made by <a href="http://www.flaticon.com/authors/vectors-market" title="Vectors Market">Vectors Market</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC 3.0 BY</a></p>
</div> </div>
<script>
var headline = document.getElementByTagName('h1')[0];
headline.innerHTML += '<img src="public/suitcase.png" width="150" />';
</script>
</body> </body>
</html> </html>

View File

@ -1,3 +1,19 @@
#forkme {
cursor: pointer;
display: block;
position: absolute;
top: 0;
right: 10%;
z-index: 10;
padding: 10px;
color: #fff;
background: @main;
font-weight: 700;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
#readme { #readme {
h1 { h1 {
background: #4B5B6E; background: #4B5B6E;

File diff suppressed because one or more lines are too long