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

43 lines
961 B
CSS
Raw Normal View History

2018-07-20 19:14:22 +02:00
:root {
/* light theme color */
--light-background: #fff;
--light-background-secondary: #eaeaea;
2019-07-09 14:17:15 +02:00
--light-header: #fafafa;
2018-07-20 19:14:22 +02:00
--light-color: #222;
--light-color-secondary: #999;
--light-border-color: #dcdcdc;
/* dark theme colors */
--dark-background: #292a2d;
--dark-background-secondary: #3b3d42;
2019-07-09 14:17:15 +02:00
--dark-header: #252627;
2018-07-20 19:14:22 +02:00
--dark-color: #a9a9b3;
--dark-color-secondary: #73747b;
--dark-border-color: #4a4b50;
/* variables for js, must be the same as these in @custom-media queries */
--phoneWidth: (max-width: 684px);
--tabletWidth: (max-width: 900px);
}
@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;*/
/*}*/