diff options
-rw-r--r-- | style.css | 28 | ||||
-rwxr-xr-x | updatesite.command | 4 |
2 files changed, 21 insertions, 11 deletions
@@ -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 |