39 lines
765 B
CSS
39 lines
765 B
CSS
---
|
|
layout: none
|
|
---
|
|
|
|
.screen{
|
|
position: relative;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
align-content: center;
|
|
width: 1000px;
|
|
height: 830px;
|
|
}
|
|
|
|
.screen-image{
|
|
position: absolute;
|
|
background-image: url({{site.baseurl}}/assets/images/crt2.png);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
background-position: top;
|
|
pointer-events: none;
|
|
z-index: 3;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.screen-content{
|
|
position: relative;
|
|
top: 141px;
|
|
left: 117px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
z-index: 1;
|
|
width: 768px;
|
|
height: 584px;
|
|
pointer-events: all;
|
|
background: #050503 !important;
|
|
filter: sepia(94%) hue-rotate(50deg) saturate(7) brightness(160%);
|
|
text-shadow: 0px 0px 15px #ffffff66, 0px 0px 1.9px green;
|
|
} |