aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-04-04 01:46:27 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-04-04 01:46:27 +0200
commitb9b068e11dff9c57c050a5f67d111ed8fe41e076 (patch)
tree7f82dd1f56944a4007217e085b705eddaa0e10c1 /static
parentMove nav buttons away from smallcal. (diff)
downloadcalp-b9b068e11dff9c57c050a5f67d111ed8fe41e076.tar.gz
calp-b9b068e11dff9c57c050a5f67d111ed8fe41e076.tar.xz
Add header for month layout.
Diffstat (limited to 'static')
-rw-r--r--static/style.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/static/style.css b/static/style.css
index e871d1fd..7bfdf42b 100644
--- a/static/style.css
+++ b/static/style.css
@@ -17,8 +17,8 @@ html, body {
grid-template-rows: auto;
grid-template-areas:
+ "main main nav"
"main main cal"
- "main main nav"
"main main details"
"main main events"
"footer footer events";
@@ -28,6 +28,7 @@ html, body {
.root {
grid-template-areas:
"main main"
+ "nav events"
"cal events"
"details events"
". events"
@@ -45,6 +46,12 @@ html, body {
.root main {
min-width: 0; /* for wide */
min-height: 0; /* for tall */
+
+ /* apparently required if one wants to have multiple
+ items within main, without it overflowing
+ */
+ display: flex;
+ flex-direction: column;
}
/* Page footer
@@ -281,6 +288,12 @@ along with their colors.
color: gray;
}
+.table-head {
+ font-size: 200%;
+ text-align: center;
+}
+
+
/* Weekly calendar
----------------------------------------
*/