mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-05-20 23:21:53 +02:00
19 lines
243 B
CSS
19 lines
243 B
CSS
|
.bilibili {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.bilibili::after {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
padding-bottom: calc(100% / (16 / 9));
|
||
|
}
|
||
|
|
||
|
.bilibili > iframe {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
border: 0;
|
||
|
}
|