init
33
source/assets/css/app.scss
Normal file
|
@ -0,0 +1,33 @@
|
|||
@import "../../../node_modules/bootstrap/scss/bootstrap";
|
||||
@import "../../../node_modules/highlightjs/styles/github.css";
|
||||
|
||||
small {
|
||||
display: block;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
main.container, footer.container {
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
footer.container {
|
||||
margin-top: 30px;
|
||||
padding: 30px 0;
|
||||
border-top: 1px dashed #aaa;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.sidebar {
|
||||
padding-top: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 980px) {
|
||||
body {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
body > main.container {
|
||||
padding: 80px 15px 0; /* 80px to make the container go all the way to the bottom of the topbar */
|
||||
}
|
BIN
source/assets/icons/jackson/1024x1024.png
Normal file
After Width: | Height: | Size: 242 KiB |
BIN
source/assets/icons/jackson/120x120.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
source/assets/icons/jackson/128x128.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
source/assets/icons/jackson/152x152.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
source/assets/icons/jackson/196x196.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
source/assets/icons/jackson/2048x2048.png
Normal file
After Width: | Height: | Size: 393 KiB |
BIN
source/assets/icons/jackson/512x512.png
Normal file
After Width: | Height: | Size: 109 KiB |
BIN
source/assets/icons/jackson/76x76.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
7
source/assets/js/app.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
require('../css/app.scss');
|
||||
|
||||
require('jquery')
|
||||
require('bootstrap')
|
||||
var hljs = require('highlightjs')
|
||||
|
||||
hljs.initHighlightingOnLoad();
|