31 lines
450 B
SCSS
31 lines
450 B
SCSS
@use '../styles/breakpoints';
|
|
|
|
.terminal {
|
|
z-index: 1060;
|
|
position: fixed;
|
|
bottom: 7vh;
|
|
user-select: none;
|
|
|
|
@include breakpoints.greater-than('xl') {
|
|
left: 25vw;
|
|
width: 50vw;
|
|
height: 50vh;
|
|
}
|
|
|
|
@include breakpoints.between('md', 'xl') {
|
|
left: 5vw;
|
|
width: 90vw;
|
|
height: 40vh;
|
|
}
|
|
|
|
@include breakpoints.less-than('md') {
|
|
left: 1vw;
|
|
width: 98vw;
|
|
height: 35vh;
|
|
}
|
|
}
|
|
|
|
.body {
|
|
background-color: #000;
|
|
}
|