summaryrefslogtreecommitdiff
path: root/css/website.css
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2024-11-11 12:31:12 -0500
committersowgro <tpoke.ferrari@gmail.com>2024-11-11 12:31:12 -0500
commit74a20e3b409ed625e74a838d418890fc5f6d0533 (patch)
tree0913fb9ece104088e654dcbcfc984eda8b790eeb /css/website.css
parentedbe7404cbc33f36816aab77cecaafd30b96c2e2 (diff)
downloadgrav-sowtheme-74a20e3b409ed625e74a838d418890fc5f6d0533.tar.gz
grav-sowtheme-74a20e3b409ed625e74a838d418890fc5f6d0533.tar.bz2
grav-sowtheme-74a20e3b409ed625e74a838d418890fc5f6d0533.zip
update grid
Diffstat (limited to '')
-rw-r--r--css/website.css40
1 files changed, 26 insertions, 14 deletions
diff --git a/css/website.css b/css/website.css
index 057e9c6..87ae676 100644
--- a/css/website.css
+++ b/css/website.css
@@ -254,21 +254,33 @@ hr {
margin: 60px 0px;
}
-/* mobile */
-@media only screen
-and (max-device-width: 900px)
-{
-.header
-{
- margin: 10px;
-}
-.footer
-{
- margin: 10px;
+.grid {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ gap: 40px;
}
-.h1t
-{
- font-size: 300%;
+
+.grid div {
+ width: 400px;
+ border-color: white;
+ border-style: solid;
+ height: 400px;
+ border-radius: 10px;
+ padding: 10px;
}
+
+
+/* mobile */
+@media only screen and (max-device-width: 900px) {
+ .header {
+ margin: 10px;
+ }
+ .footer {
+ margin: 10px;
+ }
+ .h1t {
+ font-size: 300%;
+ }
} \ No newline at end of file