From 4bc5b1296728d2578ab259380f659820053a1260 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 5 Apr 2020 12:04:21 +0200 Subject: [PATCH] Design finalising --- hbbs/static/css/styles.css | 84 ++++++++++++++++++++++++++------- hbbs/static/images/.DS_Store | Bin 6148 -> 0 bytes hbbs/templates/collection.html | 2 +- hbbs/templates/layout.html | 6 +-- hbbs/templates/programmes.html | 8 ++-- 5 files changed, 74 insertions(+), 26 deletions(-) delete mode 100644 hbbs/static/images/.DS_Store diff --git a/hbbs/static/css/styles.css b/hbbs/static/css/styles.css index 289b4a1..2623d21 100644 --- a/hbbs/static/css/styles.css +++ b/hbbs/static/css/styles.css @@ -1,28 +1,32 @@ +/* GRID DEBUG MODE */ +/* html * { */ +/* border: 1px black solid; */ +/* } */ + @font-face { font-family: "Compagnon Roman"; src: url("../fonts/Compagnon-Roman.woff") format("woff"); font-style: normal; } -@keyframes gradient { - 0% { - background-color: pink; - } - 25% { - background-color: lightgreen; - } - 50% { - background-color: lightblue; - } - 100% { - background-color: cornsilk; - } +a { + color: white; +} + +html { + background: rgb(4, 0, 255); } body { font-family: "Compagnon Roman", serif; - animation-name: gradient; - animation-duration: 120s; + background: linear-gradient( + 0deg, + rgba(4, 0, 255, 1) 1%, + rgba(255, 0, 255, 1) 86% + ); + font-size: 1.4rem; + line-height: 1.2; + color: white; } @media (max-width: 768px) { @@ -35,15 +39,59 @@ ul { padding-left: 0; } -#collection-list li { - list-style-type: circle; +#navbar-list { + margin: 5px; +} + +#collection-list li::before { + content: " ⃝ "; + color: magenta; } -#content p, ul { margin: 0; } +#content p { + margin: 5px; +} + .no-style-list { list-style: none; } + +#programmes-list h1, +#programmes-list h2 { + font-size: 1.4rem; +} + +#programmes-list h2 { + padding-left: 50px; +} + +#films-list li::before { + content: " ⃝ "; + color: magenta; +} + +#programmes-list li * { + margin-bottom: 0; +} + +#programmes-list li:nth-child(2) { + margin-top: 10px; +} + +#hbbs-logo, +#hbbs-bubbles-top, +#hbbs-bubbles-bottom { + width: 100%; +} + +#hbbs-bubbles-bottom { + margin-top: 10px; +} + +.film-indent { + padding-left: 25px; +} diff --git a/hbbs/static/images/.DS_Store b/hbbs/static/images/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 +
    {% for film in collection %}
  • {{ film.Title }}
  • {% endfor %} diff --git a/hbbs/templates/layout.html b/hbbs/templates/layout.html index 7666289..b2032fd 100644 --- a/hbbs/templates/layout.html +++ b/hbbs/templates/layout.html @@ -30,7 +30,7 @@