aboutsummaryrefslogtreecommitdiff
path: root/src/css
diff options
context:
space:
mode:
Diffstat (limited to 'src/css')
-rw-r--r--src/css/main.css15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/css/main.css b/src/css/main.css
index 1db711b..47dcf8b 100644
--- a/src/css/main.css
+++ b/src/css/main.css
@@ -31,7 +31,7 @@ body {
*/
.mobile_block, .mobile_inline { display: none }
-@media screen and (max-width: 640px) {
+@media screen and (max-width: 800px) {
body { flex-direction: column }
.computer_block { display: none }
.mobile_block { display: block }
@@ -62,11 +62,21 @@ body > header a {
text-decoration: none;
}
+body > header > nav ul {
+ list-style-type: none;
+ padding-left: 1em;
+}
+body > header > nav > ul { padding-left: 0px }
+body > header > nav a:hover { text-decoration: underline }
+body > header > nav .selected { font-weight: bold }
+body > header > nav .selected::before { content: "» " }
+
body > main {
padding: 1.5rem;
max-width: 1200px;
}
+
/*
* TEXT CORE (think markdown)
*/
@@ -77,7 +87,8 @@ h3 { font-size: 1.75rem }
h4 { font-size: 1.50rem }
h5 { font-size: 1.25rem }
h6 { font-size: 1.10rem }
-section, p { margin-bottom: 1rem }
+section, p, ul, ol { margin-bottom: 1rem }
+ul, ol { padding-left: 1.5em }
/*
* UTILS