71 lines
1.2 KiB
SCSS
71 lines
1.2 KiB
SCSS
.ntsh-fullreboot {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.ntsh-fullreboot-button {
|
|
padding: 20px;
|
|
border: 2px solid #000;
|
|
font-weight: 500;
|
|
transition-duration: 0.2s;
|
|
cursor: pointer;
|
|
background: #ff644e;
|
|
font-size: 25px;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
|
|
&:hover {
|
|
background: #be4939;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.ntsh-support {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-top: 30px;
|
|
|
|
img {
|
|
height: 50px;
|
|
cursor: pointer;
|
|
transition-duration: .2s;
|
|
|
|
&:hover {
|
|
filter: brightness(.8);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ntsh-calibration {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 30px 0px;
|
|
overflow: hidden;
|
|
|
|
img.stream {
|
|
width: 200%;
|
|
clip-path: inset(0px 0px 0px 50%);
|
|
margin-left: -100%;
|
|
}
|
|
|
|
img.mask {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.ntsh_callanchor {
|
|
width: 100%;
|
|
display: block;
|
|
background: #454545;
|
|
text-align: center;
|
|
padding: 10px 00px;
|
|
font-size: 40px;
|
|
color: #fff;
|
|
} |