diff options
author | Alex <alex@scerba.org> | 2024-05-08 11:43:22 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 14:15:43 -0400 |
commit | 2120ee71c923a5ef0b2b04ce87097ca07b3a24bd (patch) | |
tree | 3f45f70346304235e7b4bef523fd8f3bbb44ad53 /static/assets/style.css | |
parent | 9d8db6802ea1cf9efdec5dbcc2ce32c0eb5374a6 (diff) |
Add hide class
Diffstat (limited to 'static/assets/style.css')
-rw-r--r-- | static/assets/style.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/static/assets/style.css b/static/assets/style.css index 5386d83..c702bb7 100644 --- a/static/assets/style.css +++ b/static/assets/style.css @@ -137,12 +137,21 @@ b { /*background-color: rgb(240,240,240);*/
}
-img {
+/* img {
max-width: 100%;
height: auto;
vertical-align: middle;
font-style: italic;
shape-margin: 1rem;
+} */
+
+img, video {
+ max-width: 100%;
+ height: auto;
+ display: block;
+ font-style: italic;
+/* color: rgb(177, 177, 177);
+ background-color: rgb(73, 73, 73); */
}
.thumbnail img {
@@ -201,6 +210,10 @@ a:hover:not(.thumbnail) { margin-left: 1.5rem;
}
+.hide {
+ display: none;
+}
+
.footer-logo {
filter: invert(100%);
height: 1rem;
|