icynet-admin/styles/globals.scss

44 lines
603 B
SCSS
Raw Permalink Normal View History

2022-09-12 19:31:58 +00:00
@import 'colors';
2022-08-30 18:08:54 +00:00
@import 'breakpoint';
2022-09-01 14:23:11 +00:00
@import 'focus';
2022-08-30 18:08:54 +00:00
2022-08-29 14:53:03 +00:00
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2022-09-12 19:31:58 +00:00
background-color: var(--background-main);
color: var(--text-color-main);
2022-08-29 14:53:03 +00:00
}
a {
2022-09-12 19:31:58 +00:00
color: var(--link-text-color);
2022-08-29 14:53:03 +00:00
text-decoration: none;
2022-09-01 14:23:11 +00:00
&:hover {
text-decoration: underline;
}
2022-08-29 14:53:03 +00:00
}
* {
box-sizing: border-box;
}
2022-08-30 18:08:54 +00:00
h1,
h2,
h3,
h4,
h5 {
margin-top: 0;
}
2022-08-30 18:21:57 +00:00
dl {
margin-top: 0.5rem;
dt {
font-weight: 600;
margin-top: 0.5rem;
}
}