aboutsummaryrefslogtreecommitdiff
path: root/mu4web/static/style.css
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-11-30 04:45:01 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-11-30 04:45:01 +0100
commitc0a8a8b8d036c4fea931657b74ee76da0d92efe3 (patch)
treee17d88c5ef1352258e52144b627ec781ee7ec1d8 /mu4web/static/style.css
parentWork. (diff)
downloadmu4web-c0a8a8b8d036c4fea931657b74ee76da0d92efe3.tar.gz
mu4web-c0a8a8b8d036c4fea931657b74ee76da0d92efe3.tar.xz
Move stylesheet to other file.
Diffstat (limited to '')
-rw-r--r--mu4web/static/style.css93
1 files changed, 93 insertions, 0 deletions
diff --git a/mu4web/static/style.css b/mu4web/static/style.css
new file mode 100644
index 0000000..b8df022
--- /dev/null
+++ b/mu4web/static/style.css
@@ -0,0 +1,93 @@
+body, html {
+ padding: 0;
+ margin: 0;
+}
+nav {
+ display: block;
+ height: 4em;
+ color: white;
+ background-color: darkgrey;
+}
+
+nav, footer {
+ width: 100%;
+ padding-left: 1em;
+ padding-right: 1em;
+ box-sizing: border-box;
+}
+
+menu {
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: space-between;
+ height: 100%;
+}
+
+menu > li {
+ display: flex;
+ align-items: center;
+}
+
+dl {
+ display: grid;
+ grid-template-columns: 10ch auto;
+}
+dt {
+ font-weight: bold;
+}
+dd {
+ font-family: mono;
+ font-size: 80%;
+}
+dd > * {
+ margin: 0;
+}
+
+tr:nth-child(2n) {
+ background-color: lightblue;
+}
+
+.loginform {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ width: 50ch;
+}
+
+.loginform label {
+ padding: 0.5ex;
+}
+
+.loginform input[type="submit"] {
+ grid-column: 1/3;
+}
+
+main {
+ margin: 1em;
+}
+
+footer menu {
+ justify-content: space-around;
+}
+
+footer a {
+ color: darkgrey;
+}
+
+footer {
+ border-top: 1px solid grey;
+}
+
+#searchform {
+ display: grid;
+ grid-template-columns: 1fr auto;
+}
+
+#searchform input {
+ grid-column: 1/3;
+}
+
+#searchform input[type="submit"] {
+ grid-column: 2;
+}
+