13 lines
210 B
CSS
13 lines
210 B
CSS
|
.close {
|
||
|
cursor: pointer;
|
||
|
display: flex;
|
||
|
margin-left: auto;
|
||
|
padding-top: 1rem;
|
||
|
padding-right: 1.5rem;
|
||
|
font-family: 'lightning';
|
||
|
font-size: 150%;
|
||
|
}
|
||
|
|
||
|
.close:hover {
|
||
|
opacity: 0.7;
|
||
|
}
|