// style.sass: based on bulma-0.9.3/sass/bulma.sass with the following // changes: // // 1. all unused components removed // 2. monokai style for chroma added // 3. styles for navbar icon highlighting and table captions added // 4. dark mode styles added @charset "utf-8" // import chroma style // // generated with the following command: // // cd themes/hugo-pt2021/assets // hugo gen chromaclasses --style=monokai > chroma.css // @import "chroma" @import "bulma-0.9.3/sass/utilities/_all" @import "bulma-0.9.3/sass/base/_all" // elements @import "bulma-0.9.3/sass/elements/button" @import "bulma-0.9.3/sass/elements/container" @import "bulma-0.9.3/sass/elements/content" @import "bulma-0.9.3/sass/elements/image" @import "bulma-0.9.3/sass/elements/table" @import "bulma-0.9.3/sass/elements/title" @import "bulma-0.9.3/sass/elements/other" // components @import "bulma-0.9.3/sass/components/media" @import "bulma-0.9.3/sass/components/navbar" // grid (reenabled, used for images) @import "bulma-0.9.3/sass/grid/_all" // helpers @import "bulma-0.9.3/sass/helpers/_all" // layout @import "bulma-0.9.3/sass/layout/section" @import "bulma-0.9.3/sass/layout/footer" // dim navbar icons by default .navbar-item .menu-icon opacity: 60% // highlight icons on hover .navbar-item:hover .menu-icon opacity: 100% // table captions below tables table.table caption-side: bottom // dark mode (2024-05-27) @import "dark"