2025-06-08 19:22:42 +08:00

37 lines
570 B
CSS

@import './base.css';
#app {
/*margin: 0 auto;*/
/* padding: 2rem; */ /* Removed to allow full width */
font-weight: normal;
background-color: #f2f2f2;
}
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);
}
}
body{
background-color: gray;
}
@media (min-width: 1024px) {
body {
display: flex;
/*place-items: center;*/
}
#app {
width: 100%; /* Ensure #app takes full width of the body */
}
}