|
|
|
|
|
by markussss
1995 days ago
|
|
I find it incredibly useful to be able to toggle styles on and off in a simple GUI, especially for these two simple global styles: video { /* flip video horizontally */
transform: scaleX(-1) !important;
}
or /** scale videos that were originally 4:3, but
were encoded as 16:9 into proper 4:3 again */
video {
transform: scaleX(0.75) !important;
}
It's not extremely useful, but every time I toggle them on, I'm very happy that I added them both. |
|