diff options
author | Alex Scerba <alex@scerba.org> | 2024-10-21 18:17:48 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 14:15:43 -0400 |
commit | 3d5538069c3b2f43ddf170d641feb926175db529 (patch) | |
tree | b44a4dd92ce6552167707def8f1d802d548e804e /static/assets | |
parent | f12ecdaef5b5d13b33d291a20cc2b992d1528473 (diff) |
Udpate to latest portfolio version
Diffstat (limited to 'static/assets')
-rw-r--r-- | static/assets/style.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/static/assets/style.css b/static/assets/style.css index 1f27ceb..ecb569d 100644 --- a/static/assets/style.css +++ b/static/assets/style.css @@ -172,6 +172,15 @@ iframe { .thumbnail {
position: relative;
+ aspect-ratio: 4/3;
+}
+
+.empty-thumbnail {
+ aspect-ratio: 4/3;
+}
+
+.projectContent .main-image {
+ display: none;
}
.title {
@@ -181,7 +190,7 @@ iframe { position: absolute;
top: 0;
left: 0;
- padding: 8rem 1rem;
+ padding: 9rem 1rem 0 1rem;
text-align: center;
font-weight: bold;
color: white;
@@ -273,6 +282,9 @@ blockquote { display: block;
margin: auto;
}
+ .empty-thumbnail {
+ display: none;
+ }
}
@media screen and (max-width: 70rem) {
|