summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2022-10-07 23:46:06 -0700
committerKai Stevenson <kai@kaistevenson.com>2022-10-07 23:46:06 -0700
commitfb6a0b773aa350790f9fdda4d79e3957c59c7d85 (patch)
tree421ff6bcbf955a8fa10d9b495f255986b8731ad0
parent819ae0bdd8eeba46ecc394fa42294aa25e6dfc08 (diff)
updated css
-rw-r--r--style.css28
-rwxr-xr-xupdatesite.command4
2 files changed, 21 insertions, 11 deletions
diff --git a/style.css b/style.css
index f194742..1f9ca07 100644
--- a/style.css
+++ b/style.css
@@ -23,10 +23,20 @@ body{
width: 100%;
min-height: 100%;
}
-.contentpane {
- margin: auto;
- width: 60%;
- min-height: 100%;
+@media only screen and (max-width: 1200px){
+ .contentpane {
+ margin: auto;
+ width: 100%;
+ min-height: 100%;
+ }
+}
+@media only screen and (min-width: 600px){
+ .contentpane {
+ margin: auto;
+ min-width: 600px;
+ width: 60%;
+ min-height: 100%;
+ }
}
h1 {
text-align: center;
@@ -34,7 +44,7 @@ h1 {
font-size: 28pt;
font-weight: 600;
color: var(--header);
- padding: 50px 0px 15px 0px;
+ padding: 50px 14px 15px 14px;
}
p {
text-align: left;
@@ -42,7 +52,7 @@ p {
font-family: 'Quicksand', sans-serif;
font-size: 14pt;
color: var(--text);
- padding: 2px 50px 2px 50px;
+ padding: 8px 50px 8px 50px;
}
a {
color: var(--secondary);
@@ -60,7 +70,7 @@ ul h2 {
font-weight: 600;
font-style: italic;
color: var(--text);
- padding: 15px 50px 15px 50px;
+ padding: 15px 50px 15px 5px;
}
h2 a {
font-size: 100%;
@@ -73,9 +83,9 @@ a.backbutton {
padding: 0px;
}
ul {
- padding-left: 0px;
+ list-style-position: outside;
+ padding: 0px 0px 0px 75px;
}
li {
- list-style-position: inside;
color: var(--highlight);
} \ No newline at end of file
diff --git a/updatesite.command b/updatesite.command
index 8fe5a3e..720b565 100755
--- a/updatesite.command
+++ b/updatesite.command
@@ -5,5 +5,5 @@ fi
rsync -avzP --rsh=ssh ~/Web/aetherdestroyer root@aetherdestroyer.net:/var/www/
git add .
-git commit -S -m "$1"
-git push origin main
+git commit -m "$1"
+git push