Last active
January 31, 2020 14:50
-
-
Save kyorkston/a2768287fe15fc693da3dc62e8a8d697 to your computer and use it in GitHub Desktop.
Codebar - Trivia Exercise
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<link rel="stylesheet" href="style.css"> | |
<script src="index.js"></script> | |
<title>codebar.io - Trivia!</title> | |
</head> | |
<body> | |
<header> | |
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' /> | |
</header> | |
<div id="container"> | |
<h1>Questions</h1> | |
<div id="questions"> | |
</div> | |
</div> | |
<footer> | |
<div id="content"> by <a href="http://codebar.io">codebar</a> </div> | |
</footer> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: Helvetica, Arial, sans-serif; | |
border-top: 5px solid #4c4066; | |
margin: 0px auto; | |
font-size: 16px; | |
} | |
header { | |
text-align: center; | |
} | |
li { | |
padding-bottom: 10px; | |
} | |
#selector { | |
font-size: 16px; | |
} | |
#questions { | |
max-width: 750px; | |
} | |
#logo { | |
position: relative; | |
top: 2px; | |
} | |
#container { | |
width: 1040px; | |
padding-left: 8px; | |
min-height: 750px; | |
} | |
footer { | |
padding-bottom: 10px; | |
border-bottom: 5px solid #4c4066; | |
position: absolute; | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment