hugo-theme-hello-friend/assets/css/variables.css

45 lines
915 B
CSS
Raw Normal View History

2018-07-20 19:14:22 +02:00
:root {
/* light theme color */
2020-06-20 00:07:59 +02:00
--background: #fff;
--background-secondary: #eaeaea;
--header: #fafafa;
--color: #222;
--color-secondary: #999;
--border-color: #dcdcdc;
2018-07-20 19:14:22 +02:00
/* variables for js, must be the same as these in @custom-media queries */
--phoneWidth: (max-width: 684px);
--tabletWidth: (max-width: 900px);
}
2020-06-20 00:07:59 +02:00
body.dark-theme {
/* dark theme colors */
--background: #292a2d;
--background-secondary: #3b3d42;
--header: #252627;
--color: #a9a9b3;
--color-secondary: #73747b;
--border-color: #4a4b50;
}
2018-07-20 19:14:22 +02:00
@custom-media --phone (width < 684px);
@custom-media --tablet (width < 900px);
2019-02-06 12:52:43 +01:00
@define-mixin greater-icon $stroke-width: 3px, $width: .95rem, $height: 100% {
.greater-icon {
width: $width;
height: $height;
2019-07-09 14:12:56 +02:00
path {
2019-02-06 12:52:43 +01:00
stroke: currentColor;
stroke-width: $stroke-width;
}
}
}
2018-07-20 19:14:22 +02:00
/* HOW TO USE */
/*@media (--phone) {*/
/*margin-top: 0;*/
/*}*/