30 lines
557 B
CSS
30 lines
557 B
CSS
.game-view {
|
|
margin-bottom: 10px;
|
|
background-color: lightgrey;
|
|
width: 100%;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
color: black;
|
|
}
|
|
|
|
.game-view a {
|
|
color:darkgrey;
|
|
text-decoration: none;
|
|
transition: .25s ease;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.game-view .active {
|
|
color: white;
|
|
border-radius: 2px;
|
|
background-color: cadetblue;
|
|
opacity: 80%;
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.game-view a:hover:not(.active) {
|
|
color: cadetblue;
|
|
box-shadow: 0 1.5px 0 0 currentColor;
|
|
} |