Added a couple of new colors, fixed build script, changed default color from orange to blue-ish color.
This commit is contained in:
parent
a363081661
commit
7a82e687ba
12 changed files with 6218 additions and 10 deletions
|
@ -1,6 +1,8 @@
|
||||||
// Flex colors
|
// Flex colors
|
||||||
@orange: #D9411E;
|
@orange: #D9411E;
|
||||||
@light-orange: #FF5A09;
|
@light-orange: #FF5A09;
|
||||||
|
@cyan: #1ea7d9;
|
||||||
|
@light-cyan: #09deff;
|
||||||
@white: #ffffff;
|
@white: #ffffff;
|
||||||
@grey: #333333;
|
@grey: #333333;
|
||||||
@light-grey: #eeeeee;
|
@light-grey: #eeeeee;
|
||||||
|
@ -16,8 +18,8 @@
|
||||||
@text-color: @dark-grey;
|
@text-color: @dark-grey;
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
@link-color: @orange;
|
@link-color: @cyan;
|
||||||
@link-hover-color: @light-orange;
|
@link-hover-color: @light-cyan;
|
||||||
|
|
||||||
// Sidebar (aside)
|
// Sidebar (aside)
|
||||||
@sidebar-bg: @grey;
|
@sidebar-bg: @grey;
|
||||||
|
|
3529
package-lock.json
generated
Normal file
3529
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "source venv/bin/activate && pip install pelican markdown && pelican -s tests/pelicanconf.py && deactivate",
|
"test": "source venv/bin/activate && pip install pelican markdown && pelican -s tests/pelicanconf.py && deactivate",
|
||||||
"build": "node_modules/gulp/bin/gulp.js default"
|
"build": "gulp default"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
4
static/font-awesome/css/font-awesome.min.css
vendored
Normal file
4
static/font-awesome/css/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
static/font-awesome/fonts/FontAwesome.otf
Normal file
BIN
static/font-awesome/fonts/FontAwesome.otf
Normal file
Binary file not shown.
BIN
static/font-awesome/fonts/fontawesome-webfont.eot
Normal file
BIN
static/font-awesome/fonts/fontawesome-webfont.eot
Normal file
Binary file not shown.
2671
static/font-awesome/fonts/fontawesome-webfont.svg
Normal file
2671
static/font-awesome/fonts/fontawesome-webfont.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 434 KiB |
BIN
static/font-awesome/fonts/fontawesome-webfont.ttf
Normal file
BIN
static/font-awesome/fonts/fontawesome-webfont.ttf
Normal file
Binary file not shown.
BIN
static/font-awesome/fonts/fontawesome-webfont.woff
Normal file
BIN
static/font-awesome/fonts/fontawesome-webfont.woff
Normal file
Binary file not shown.
BIN
static/font-awesome/fonts/fontawesome-webfont.woff2
Normal file
BIN
static/font-awesome/fonts/fontawesome-webfont.woff2
Normal file
Binary file not shown.
2
static/stylesheet/style.min.css
vendored
2
static/stylesheet/style.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,8 @@
|
||||||
// Flex colors
|
// Flex colors
|
||||||
@orange: #D9411E;
|
@orange: #D9411E;
|
||||||
@light-orange: #FF5A09;
|
@light-orange: #FF5A09;
|
||||||
|
@cyan: #1ea7d9;
|
||||||
|
@light-cyan: #09deff;
|
||||||
@white: #ffffff;
|
@white: #ffffff;
|
||||||
@grey: #333333;
|
@grey: #333333;
|
||||||
@light-grey: #eeeeee;
|
@light-grey: #eeeeee;
|
||||||
|
@ -16,8 +18,8 @@
|
||||||
@text-color: @dark-grey;
|
@text-color: @dark-grey;
|
||||||
|
|
||||||
// Links
|
// Links
|
||||||
@link-color: @orange;
|
@link-color: @cyan;
|
||||||
@link-hover-color: @light-orange;
|
@link-hover-color: @light-cyan;
|
||||||
|
|
||||||
// Sidebar (aside)
|
// Sidebar (aside)
|
||||||
@sidebar-bg: @grey;
|
@sidebar-bg: @grey;
|
||||||
|
@ -26,14 +28,14 @@
|
||||||
@sidebar-link-hover-color: @light-grey;
|
@sidebar-link-hover-color: @light-grey;
|
||||||
|
|
||||||
// Buttons
|
// Buttons
|
||||||
@btn-bg: @orange;
|
@btn-bg: @cyan;
|
||||||
@btn-text-color: @white;
|
@btn-text-color: @white;
|
||||||
@btn-hover-color: @light-orange;
|
@btn-hover-color: @light-cyan;
|
||||||
|
|
||||||
// Tag cloud
|
// Tag cloud
|
||||||
@tag-bg: @orange;
|
@tag-bg: @cyan;
|
||||||
@tag-text-color: @white;
|
@tag-text-color: @white;
|
||||||
@tag-hover-color: @light-orange;
|
@tag-hover-color: @light-cyan;
|
||||||
|
|
||||||
// Header
|
// Header
|
||||||
@header-text-color: @med-grey;
|
@header-text-color: @med-grey;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue