Setting up base style for page.

This commit is contained in:
ybouane 2024-10-09 14:26:42 -04:00
parent 2b4f959525
commit da80392711
3 changed files with 58 additions and 4 deletions

View file

@ -0,0 +1,42 @@
* {
box-sizing:border-box;
margin:0px;
padding:0px;
}
html {
min-height:100%;
overflow-x:hidden;
}
body {
display:flex;
flex-flow:column nowrap;
align-items: center;
background-color: #212429;
color:#e4e4e4;
gap:15px;
font-family: "Fira Sans Condensed", sans-serif;
padding:20px;
&>h1 {
}
}
a {
color:inherit;
text-decoration-style: dotted;
&:hover {
text-decoration-style:solid;
}
}
header {
}
main {
}
footer {
}