diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..28697c8 --- /dev/null +++ b/style.css @@ -0,0 +1,91 @@ +@font-face { + font-family: commitmono; + src: url('./fonts/CommitMono-400-Regular.ttf'); +} + +body { + background-image: url('img/bg.gif'); + margin: 0; + height: 100vh; +} + +* { + box-sizing: border-box; +} + +p { + font-family: commitmono; + text-align: center; + color: white; +} + +h1 { + font-family: commitmono; + color:#3d356a; + text-align: center; +} + +img { + display: block; + margin: 0 auto; +} + +#container { + max-width: 40%; + height: 100%; + margin: auto; +} + +#main { + background-color: black; + height: 90%; + padding: 40px; +} + +.buttons { + display:flex; + justify-content:center; +} + + +/* navigation section!! */ +#info { + height: 40px; + background-color: #3d356a; + /* navbar color */ + width: 100%; +} + +#info ul { + display: flex; + padding: 0; + margin: 0; + list-style-type: none; + justify-content: space-evenly; +} + +#info li { + padding-top: 10px; +} + +/* navigation links*/ +#info li a { + color: #FFFFFF; + /* navbar text color */ + font-family: commitmono; + font-weight: 800; + text-decoration: none; + /* this removes the underline */ +} + + +footer { + background-color: #000000; + color: #000000; + /* background color for footer */ + width: 100%; + height: 100%; + padding: 10px; + text-align: center; + /* this centers the footer text */ +} |