diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-05-20 13:40:54 -0400 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-20 22:06:35 +0200 |
commit | a89225138772feb1b159c2794f345b7e4bb36658 (patch) | |
tree | 0a5a8fab454a7e0fa5ffa678a13701e24523a1a3 /themes/alps/assets | |
parent | 7fb2b65eaafa7ad63c7b3f6850934f958afa1bb4 (diff) | |
download | alps-a89225138772feb1b159c2794f345b7e4bb36658.tar.gz alps-a89225138772feb1b159c2794f345b7e4bb36658.zip |
alps theme: add event page layout
Diffstat (limited to 'themes/alps/assets')
-rw-r--r-- | themes/alps/assets/style.css | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/themes/alps/assets/style.css b/themes/alps/assets/style.css index b8b7f64..9d51f45 100644 --- a/themes/alps/assets/style.css +++ b/themes/alps/assets/style.css @@ -85,6 +85,9 @@ input[type="text"], input[type="email"], input[type="password"], input[type="file"], +input[type="number"], +input[type="date"], +input[type="time"], textarea { margin: 0; border: none; @@ -188,13 +191,17 @@ main table td a { text-decoration: none; } main table td a:hover { text-decoration: underline; } -main.message table { background-color: white; } -main.message th { width: 5%;} -main.message h1 { font-size: 1.2rem; padding: 0.5rem;} +main.message table, +main.event table { background-color: white; } +main.message th, +main.event th { width: 5%;} +main.message h1, +main.event h1 { font-size: 1.2rem; padding: 0.5rem;} main.message pre, main.message iframe, -main.contact .details { +main.contact .details, +main.event pre { flex: 1 auto; padding: 1rem; margin: 0.3rem 0 0 0; @@ -203,7 +210,8 @@ main.contact .details { max-width: 100%; } -main.message pre { +main.message pre, +main.event pre { white-space: pre-wrap; word-break: break-all; } @@ -250,6 +258,18 @@ main.create-update .actions > *:not(:last-child) { margin-right: 1rem; } +main.create-update .event-date { + display: flex; + flex-direction: row; + align-items: center; +} + +main.create-update .event-date input { + width: inherit; + flex-grow: 1; + margin-left: 0.3rem; +} + .actions h3 { align-self: center; margin: 0 1.3rem 0 1rem; |