summaryrefslogtreecommitdiff
path: root/static/index.css
diff options
context:
space:
mode:
authorJulien Dessaux2022-10-27 23:56:29 +0200
committerJulien Dessaux2022-10-27 23:56:29 +0200
commit2611ded920a8345922346ed0d43e4efdd94401a1 (patch)
tree3313d976fbb11bdbfd1841ce336cc4372f9ab32c /static/index.css
parentAllow for placing the first word (diff)
downloadjeux-de-mots-2611ded920a8345922346ed0d43e4efdd94401a1.tar.gz
jeux-de-mots-2611ded920a8345922346ed0d43e4efdd94401a1.tar.bz2
jeux-de-mots-2611ded920a8345922346ed0d43e4efdd94401a1.zip
Began implementing middlewares, session and auth
Diffstat (limited to 'static/index.css')
-rw-r--r--static/index.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/index.css b/static/index.css
index ab00f8f..f0ed5e9 100644
--- a/static/index.css
+++ b/static/index.css
@@ -34,6 +34,31 @@ button:disabled, button[disabled] {
cursor: auto;
}
+header nav ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ font-size: 1.25rem;
+}
+header nav ul li {
+ display: inline;
+ float: right;
+ display: block;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+}
+header nav ul li.nav-menu-title {
+ float: left;
+ text-transform: uppercase;
+ font-weight: 700;
+ margin-right: 4px;
+}
+form input {
+ margin-bottom: 8px;
+}
+
main {
margin-left: auto;
margin-right: auto;
@@ -90,3 +115,11 @@ td {
font-weight: normal;
font-size: 8pt;
}
+
+@media only screen and (min-width: 48rem) {
+ body {
+ max-width:48rem;
+ margin-left: auto;
+ margin-right: auto;
+ }
+}