neotel-website/styles.scss

54 lines
499 B
SCSS

---
---
*,
*:before,
*:after
{
box-sizing: border-box;
}
html,
body
{
min-height: 100vh;
height: auto;
max-width: 100vw;
width: auto;
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
font-family: sans-serif;
}
a
{
color: #007fff;
&:hover,
&:focus
{
text-decoration-thickness: 2px;
}
}
.container
{
width: 100%;
max-width: 100vw;
flex: 1;
padding: 1rem;
}
@import 'nav';
@import 'footer';
@import 'table';
@import 'form';
@import 'utils';
@import 'index';