aboutsummaryrefslogtreecommitdiff
path: root/static/_small-calendar.scss
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-16 13:04:17 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-16 13:04:17 +0200
commit46ab705a3fef8294a37e6f329fbf898d9f3ad2f6 (patch)
tree9931ad1d39946d7b1464e7a0f228fc7f2fa910a4 /static/_small-calendar.scss
parentImprove makefile. (diff)
downloadcalp-46ab705a3fef8294a37e6f329fbf898d9f3ad2f6.tar.gz
calp-46ab705a3fef8294a37e6f329fbf898d9f3ad2f6.tar.xz
Move small-calendar css to own file.
Diffstat (limited to 'static/_small-calendar.scss')
-rw-r--r--static/_small-calendar.scss51
1 files changed, 51 insertions, 0 deletions
diff --git a/static/_small-calendar.scss b/static/_small-calendar.scss
new file mode 100644
index 00000000..c4814285
--- /dev/null
+++ b/static/_small-calendar.scss
@@ -0,0 +1,51 @@
+.small-calendar {
+ display: grid;
+ grid-template-rows: auto;
+ grid-template-columns: auto;
+
+ grid-auto-flow: dense;
+
+ > * {
+ text-align: center;
+ > time {
+ width: 100%;
+ text-align: right;
+ /* padding place in <time> instead on parent block element
+ to allow a border radius without making the link area
+ smaller
+ */
+ padding: 5px;
+ }
+ }
+ > *:not(.column-head) {
+ display: flex;
+ align-items: center; /* vertically center */
+ text-align: right;
+ }
+ a {
+ color: initial;
+ text-decoration: none;
+ }
+
+ .row-head {
+ grid-column: 1;
+ border-right: 1px solid black;
+
+ /* Sort of hack to get week numbers looking ok */
+ justify-content: right;
+ padding-right: 5px;
+ }
+
+ .column-head {
+ grid-row: 1;
+ border-bottom: 1px solid black;
+ }
+
+ .next, .prev {
+ color: $gray;
+ }
+
+ .today {
+ border: 1px solid black;
+ }
+}