Files
com.xaymar.www/_sass/_base.scss
T

53 lines
788 B
SCSS
Raw Normal View History

2021-12-24 11:00:43 +01:00
* {
box-sizing: border-box;
}
html {
}
body {
margin: 0;
padding: 0;
background: $theme-content-background;
// Font
2023-04-03 22:44:55 +02:00
font-size: 1.1rem;
2023-04-03 23:08:26 +02:00
line-height: 1.5em;
word-spacing: 0.05em;
2021-12-24 11:00:43 +01:00
font-family: "Roboto", sans-serif;
2021-12-24 20:14:03 +01:00
text-rendering: optimizelegibility;
2021-12-24 11:00:43 +01:00
color: $theme-content-color;
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
}
a,
2022-10-28 23:43:02 +02:00
a:hover,
2022-10-28 22:32:11 +02:00
a:visited,
a:focus,
a:active {
2021-12-24 11:00:43 +01:00
color: inherit;
text-decoration: inherit;
}
2022-10-28 22:31:04 +02:00
button {
background: $theme-button-background;
color: $theme-button-color;
border: 0;
cursor: pointer;
}
2022-10-28 23:43:02 +02:00
button:hover,
2022-10-28 22:32:11 +02:00
button:focus,
button:active,
button:visited {
2022-10-28 22:31:04 +02:00
background: $theme-button-background-active;
color: $theme-button-color-active;
border: 0;
}
2021-12-24 11:00:43 +01:00
@import "_header.scss";
@import "_content.scss";
2021-12-25 08:35:40 +01:00
@import "_footer.scss";