neotel-website/styles.scss

51 lines
466 B
SCSS
Raw Normal View History

2021-06-07 12:31:15 +00:00
---
---
*,
*:before,
*:after
{
box-sizing: border-box;
}
html,
body
{
min-height: 100vh;
height: auto;
max-width: 100vw;
2021-06-07 12:49:50 +00:00
width: auto;
2021-06-07 12:31:15 +00:00
margin: 0;
padding: 0;
font-family: sans-serif;
}
2021-06-07 15:58:31 +00:00
a
{
color: #007fff;
&:hover,
&:focus
{
text-decoration-thickness: 2px;
}
}
2021-06-07 12:31:15 +00:00
.container
{
height: 100%;
min-height: 100vh;
width: 100%;
max-width: 100vw;
padding: 1rem;
}
@import 'nav';
@import 'footer';
2021-06-07 12:31:15 +00:00
@import 'table';
@import 'utils';
@import 'index';