Skip to content
Snippets Groups Projects

Resolve "Implement basic functionality"

Merged Julian requested to merge 1-implement-basic-functionality into main
Compare and Show latest version
3 files
+ 29
3
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 31
0
@import "./base.css";
#app {
max-width: 1280px;
min-width: 80vw;
margin: 0 auto;
padding: 2rem;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}
@media (min-width: 1024px) {
body {
display: flex;
flex-direction: column;
place-items: center;
}
}
Loading