Setup a very basic starting point for the website

This commit is contained in:
BuyMyMojo 2024-12-16 01:05:08 +11:00
parent f1f454b6f9
commit 99f8089b6d
20 changed files with 324 additions and 22 deletions

79
src/styles/aria.css Normal file
View file

@ -0,0 +1,79 @@
html {
background-color: #bbbec2;
font-family: sans-serif;
}
body {
margin: 0 auto;
width: 100%;
max-width: 80ch;
padding: 1rem;
line-height: 1.5;
}
* {
box-sizing: border-box;
}
h1 {
margin: 1rem 0;
font-size: 2.5rem;
}
.badge {
image-rendering: pixelated;
min-width: 88px;
min-height: 31px;
padding: 4px;
}
.linked-buttons {
outline-style: dashed;
display:inline-block
}
/* nav styles */
.nav-links {
width: 100%;
top: 5rem;
left: 48px;
background-color: #ff9776;
display: none;
margin: 0;
}
.nav-links a {
display: block;
text-align: center;
padding: 10px 0;
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a:focus {
background-color: #ff9776;
}
.expanded {
display: unset;
}
@media screen and (min-width: 636px) {
.nav-links {
margin-left: 5em;
display: block;
position: static;
width: auto;
background: none;
}
.nav-links a {
display: inline-block;
padding: 15px 20px;
}
}