Files
amayo/AmayoWeb/src/assets/main.css

30 lines
417 B
CSS
Raw Normal View History

2025-11-24 16:16:01 -06:00
@import './base.css';
#app {
width: 100%;
margin: 0;
padding: 0;
font-weight: normal;
}
a,
.green {
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
padding: 3px;
}
@media (hover: hover) {
a:hover {
background-color: hsla(160, 100%, 37%, 0.2);
}
}
@media (min-width: 1024px) {
body {
display: flex;
place-items: center;
}
}