neotel-website/styles.scss

54 lines
499 B
SCSS
Raw Permalink 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
display: flex;
flex-direction: column;
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
{
width: 100%;
max-width: 100vw;
flex: 1;
2021-06-07 12:31:15 +00:00
padding: 1rem;
}
@import 'nav';
@import 'footer';
2021-06-07 12:31:15 +00:00
@import 'table';
@import 'form';
2021-06-07 12:31:15 +00:00
@import 'utils';
@import 'index';