This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Bootstrap and fixed bottom navbar
- Loading branch information
1 parent
858ee33
commit 2f96e23
Showing
7 changed files
with
118 additions
and
53 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
@import "../node_modules/bootstrap/scss/variables"; | ||
@import "../node_modules/bootstrap/scss/mixins"; | ||
@import "../node_modules/bootstrap/scss/custom"; | ||
|
||
// Reset and dependencies | ||
@import "../node_modules/bootstrap/scss/normalize"; | ||
@import "../node_modules/bootstrap/scss/print"; | ||
|
||
// Core CSS | ||
@import "../node_modules/bootstrap/scss/reboot"; | ||
@import "../node_modules/bootstrap/scss/type"; | ||
@import "../node_modules/bootstrap/scss/images"; | ||
@import "../node_modules/bootstrap/scss/code"; | ||
@import "../node_modules/bootstrap/scss/grid"; | ||
@import "../node_modules/bootstrap/scss/tables"; | ||
@import "../node_modules/bootstrap/scss/forms"; | ||
@import "../node_modules/bootstrap/scss/buttons"; | ||
|
||
// Components | ||
@import "../node_modules/bootstrap/scss/transitions"; | ||
@import "../node_modules/bootstrap/scss/dropdown"; | ||
@import "../node_modules/bootstrap/scss/button-group"; | ||
@import "../node_modules/bootstrap/scss/input-group"; | ||
@import "../node_modules/bootstrap/scss/custom-forms"; | ||
@import "../node_modules/bootstrap/scss/nav"; | ||
@import "../node_modules/bootstrap/scss/navbar"; | ||
@import "../node_modules/bootstrap/scss/card"; | ||
@import "../node_modules/bootstrap/scss/breadcrumb"; | ||
@import "../node_modules/bootstrap/scss/pagination"; | ||
@import "../node_modules/bootstrap/scss/badge"; | ||
@import "../node_modules/bootstrap/scss/jumbotron"; | ||
@import "../node_modules/bootstrap/scss/alert"; | ||
@import "../node_modules/bootstrap/scss/progress"; | ||
@import "../node_modules/bootstrap/scss/media"; | ||
@import "../node_modules/bootstrap/scss/list-group"; | ||
@import "../node_modules/bootstrap/scss/responsive-embed"; | ||
@import "../node_modules/bootstrap/scss/close"; | ||
|
||
// Components w/ JavaScript | ||
@import "../node_modules/bootstrap/scss/modal"; | ||
@import "../node_modules/bootstrap/scss/tooltip"; | ||
@import "../node_modules/bootstrap/scss/popover"; | ||
@import "../node_modules/bootstrap/scss/carousel"; | ||
|
||
// Utility classes | ||
@import "../node_modules/bootstrap/scss/utilities"; | ||
|
||
|
||
|
||
html, body { | ||
background: #000; | ||
font-family: 'Lato', sans-serif; | ||
} | ||
|
||
a, a:visited, a:hover { | ||
color: #b7d3ff; | ||
text-decoration: none; | ||
cursor: pointer; | ||
} | ||
|
||
#info { | ||
font-size: 20px; | ||
} | ||
|
||
#start_button { | ||
border: 0; | ||
background-color: transparent; | ||
padding: 0; | ||
color: #ccc; | ||
} | ||
|
||
.interim { | ||
color: #fffeaf; | ||
} | ||
|
||
.final { | ||
padding-right: 3px; | ||
} | ||
.caption-wrap { | ||
line-height: 1.3em; | ||
color: #fff; | ||
max-width: 1200px; | ||
margin: 0 auto 150px auto; | ||
font-weight: bold; | ||
text-transform: uppercase; | ||
font-size: 4em; | ||
} |
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