Files
nitter/src/sass/tweet/video.scss
ngn d221df59df
Some checks failed
docker / nitter (push) Failing after 2m29s
docker / session (push) Successful in 1m20s
apply patches from the old upstream and cleanup
Signed-off-by: ngn <ngn@ngn.tf>
2025-05-23 00:53:45 +03:00

69 lines
1.1 KiB
SCSS

@import '_variables';
@import '_mixins';
video {
max-height: 100%;
width: 100%;
}
.gallery-video {
display: flex;
overflow: hidden;
}
.gallery-video.card-container {
flex-direction: column;
}
.video-container {
min-height: 80px;
min-width: 200px;
max-height: 530px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
img {
max-height: 100%;
max-width: 100%;
}
}
.video-overlay {
@include play-button;
background-color: $shadow;
p {
position: relative;
z-index: 0;
text-align: center;
top: calc(50% - 20px);
font-size: 20px;
line-height: 1.3;
margin: 0 20px;
}
div {
position: relative;
z-index: 0;
top: calc(50% - 20px);
margin: 0 auto;
width: 40px;
height: 40px;
}
form {
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
display: flex;
}
button {
padding: 5px 8px;
font-size: 16px;
}
}