diff options
author | Alex <alex@scerba.org> | 2024-02-11 11:29:52 -0500 |
---|---|---|
committer | Alex <alex@scerba.org> | 2024-02-11 11:29:52 -0500 |
commit | cf0c8dcf860444e8e39f549f56379573f55a644f (patch) | |
tree | 5c45d5b809765a24fb1e1d44da04b2305323470a /static | |
parent | afd4175c02680d8a07330971470caa675112e3e9 (diff) |
Add gallery page
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index caf9776..d8361ef 100644 --- a/static/style.css +++ b/static/style.css @@ -50,7 +50,7 @@ main { padding: 1.75rem;
padding-top: 5rem;
padding-bottom: 3rem;
- max-width: 80rem;
+ max-width: 60rem;
margin-left: auto;
margin-right: auto;
}
@@ -237,8 +237,9 @@ blockquote { font-style: italic;
}
-.sketchbook > img:first-of-type {
- display: none;
+.gallery {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 45rem) {
@@ -252,6 +253,9 @@ blockquote { .even-2-col-grid {
grid-template-columns: 1fr;
}
+ .gallery {
+ grid-template-columns: repeat(2, 1fr);
+ }
.toggler{
/* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING : */
|