20 lines
278 B
CSS
20 lines
278 B
CSS
@import './base.css';
|
|
|
|
#app {
|
|
margin-left: 325px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|