You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
556 B
43 lines
556 B
@import '../../variables.scss';
|
|
|
|
.container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10;
|
|
background: $spaceblue;
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
height: 100vh;
|
|
margin: 5%;
|
|
color: $white;
|
|
}
|
|
|
|
.esc {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
color: $darkestgrey;
|
|
cursor: pointer;
|
|
padding: 20px;
|
|
border-radius: 50%;
|
|
|
|
&:hover {
|
|
color: $bluegrey;
|
|
background: $darkgrey;
|
|
}
|
|
|
|
&:active {
|
|
color: $white;
|
|
background: $gold;
|
|
}
|
|
|
|
svg {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
}
|
|
|