aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/hmno_header.scss
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2019-05-01 21:11:53 +0200
committerHarald Eilertsen <haraldei@anduin.net>2019-05-01 21:11:53 +0200
commit751b112b7ab1766aa08d3422ecd1924354b9cd59 (patch)
tree5982c8cc5fe861209d8e7baf9ca6e39b48dc9e89 /app/assets/stylesheets/hmno_header.scss
parenta7a2fc57cf458fee98bad03b3c2a40b6e8d75606 (diff)
downloadhmnoweb-751b112b7ab1766aa08d3422ecd1924354b9cd59.tar.gz
hmnoweb-751b112b7ab1766aa08d3422ecd1924354b9cd59.tar.bz2
hmnoweb-751b112b7ab1766aa08d3422ecd1924354b9cd59.zip
Move towards flexbox layout.
Main page and header now use flexbox instead of not quite working floats and position relative/absolute. This really simplifies things. Perhaps we'll even be able to make a mobile friendly site some day. Various other cosmetic tweaks have snuch in too. The page now has a max size of about 25cm, and some other minor tweaks.
Diffstat (limited to 'app/assets/stylesheets/hmno_header.scss')
-rw-r--r--app/assets/stylesheets/hmno_header.scss14
1 files changed, 10 insertions, 4 deletions
diff --git a/app/assets/stylesheets/hmno_header.scss b/app/assets/stylesheets/hmno_header.scss
index 4f722fd..32e2760 100644
--- a/app/assets/stylesheets/hmno_header.scss
+++ b/app/assets/stylesheets/hmno_header.scss
@@ -16,6 +16,8 @@
@import "color_scheme";
#header {
+ display: flex;
+
background: {
color: $header-bg;
image: image_url("header-metal-bg.jpg");
@@ -27,13 +29,11 @@
margin-bottom: $spacing;
#logo {
- width: 200px;
- float: left;
+ flex: 0 0 200px;
}
#merchlink {
- width: 200px;
- float: right;
+ flex: 0 0 200px;
text-align: center;
img {
@@ -47,6 +47,12 @@
}
}
+ #menu-area {
+ display: flex;
+ flex-direction: column-reverse;
+ flex-grow: 1;
+ }
+
#menu {
text-align: center;
font-size: 120%;