flexbox/src/assets/main.css

29 lines
447 B
CSS
Raw Normal View History

2022-11-03 04:58:16 +08:00
@import "./base.css";
body {
/*display: flex;*/
/*place-items: center;*/
2022-11-03 20:05:55 +08:00
background-color: #ffffff;
2022-11-03 04:58:16 +08:00
}
#app {
width: 100%;
height: 100vh;
margin: 0 auto;
/*padding: 0 2rem;*/
font-weight: normal;
2022-11-03 05:42:03 +08:00
overflow-x: hidden;
2022-11-03 04:58:16 +08:00
}
a {
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);
}
}