mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
14fdafebe4
* Created site files are now placed in an output directory `dist` * Added a ton of comments in build.js * Made functions in build.js use bluebird promises * Themes are now in the assets/templates folder instead as magic strings in the source code * Any number of custom themes (not just light and dark) can be used by creating a [theme].css file and putting it in assets/themes * CSS themes are rendered with Handlebars * CSS themes now rely on Handlebars for specifying the background * Restored config.json to template file * Changes to the blogging * Moved blog templates and config files to assets/blog * Created blog pages now go to dist/blog/ * Updated blogTemplate * Updated the README to reflect the changes made by this pull request * Added link to demo site in README * Added sorting and ordering
31 lines
917 B
CSS
31 lines
917 B
CSS
:root {
|
|
--bg-color: rgb(10, 10, 10);
|
|
--text-color: #fff;
|
|
--blog-gray-color: rgb(180, 180, 180);
|
|
--background-image: linear-gradient(90deg, rgba(10, 10, 10, 0.6), rgb(10, 10, 10, 1)), url("{{background}}");
|
|
--background-background: linear-gradient(0deg, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0.6)),
|
|
url("{{background-image}}") center center fixed;
|
|
--height: 50vh;
|
|
}
|
|
#display h1 {
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: #fff;
|
|
}
|
|
#blog-display h1 {
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: #fff;
|
|
}
|
|
#projects section {
|
|
background: rgb(20, 20, 20);
|
|
}
|
|
#blog_section section {
|
|
background: rgb(20, 20, 20);
|
|
}
|
|
@media (max-width: 800px) {
|
|
:root {
|
|
--background-image: linear-gradient(0deg, rgba(10, 10, 10, 1), rgb(10, 10, 10, 0)),
|
|
url("{{background-image}}") !important;
|
|
}
|
|
}
|