summaryrefslogtreecommitdiffstats
path: root/scss/main.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/main.scss')
-rw-r--r--scss/main.scss39
1 files changed, 39 insertions, 0 deletions
diff --git a/scss/main.scss b/scss/main.scss
index f2d3feb..5e3da2e 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -17,3 +17,42 @@ h5 {
.highlight .err {
border: none !important;
}
+
+.toc {
+ background: white;
+ padding: 0 1rem;
+ float: right;
+ max-width: 40%;
+ margin-bottom: 1rem;
+
+ @media(max-width: 720px) {
+ float: none;
+ max-width: inherit;
+ padding: 0;
+ }
+}
+
+.alert {
+ position: initial;
+}
+
+.event-row {
+ display: flex;
+ justify-content: space-between;
+ align-content: space-between;
+ align-items: stretch;
+ flex-wrap: wrap;
+ margin-bottom: 0;
+
+ .event {
+ display: flex;
+ flex-direction: column;
+ max-width: calc(50% - 0.5rem);
+ margin: 0;
+ margin-bottom: 1rem !important;
+
+ p {
+ flex-grow: 1;
+ }
+ }
+}