Compare commits

...

5 Commits

Author SHA1 Message Date
Halfdan abc7c564f7 Merge branch 'smaller-margins' into new
continuous-integration/drone/push Build is passing Details
We just have smaller margins and nice looking layout in mobile view :)
2022-12-13 20:25:00 +01:00
Halfdan 7b4e3ac695 Highlighting of current page stopped working, something with new URLS, this fix fixes it, but I don't know if it is the correct way to accomplish it. 2022-12-13 20:24:39 +01:00
Halfdan 000a7bea1e Adjusting margins and layout of mobile view + fixing tabs/spaces in CSS file 2022-12-13 20:23:10 +01:00
Halfdan 96960993fc Merge branch 'new' of git.data.coop:data.coop/website into smaller-margins 2022-12-13 19:35:28 +01:00
Halfdan 26015a40f4 Smaller header and margins in mobile view 2022-12-13 19:34:19 +01:00
2 changed files with 55 additions and 51 deletions

View File

@ -52,7 +52,7 @@
--alt-bg-color : #a8f3f4;
--bar-color : #f0dcac;
--burger_size : 56px;
--burger_size : 45px;
}
body {
@ -185,24 +185,23 @@ aside nav footer ol li a {
}
aside header a img {
display : block;
width : 100%;
height : 140px;
}
dl.dl-services {
display: grid;
column-gap: 2rem;
display : grid;
column-gap : 2rem;
dt {
grid-column-start: 1;
grid-column-end: 2;
font-weight: bold;
grid-column-start : 1;
grid-column-end : 2;
font-weight : bold;
}
dd {
grid-column-start: 2;
grid-column-end: 3;
grid-column-start : 2;
grid-column-end : 3;
}
}
@media(max-width:1000px) {
@ -226,14 +225,13 @@ dl.dl-services {
aside header {
display : flex;
flex-direction : row;
justify-content : space-between;
align-items : center;
margin : var(--base-grid);
margin : var(--base-grid) calc(var(--base-grid) / 2);
}
aside header a img {
height : 120px;
height : 80px;
}
aside nav {
@ -260,7 +258,7 @@ dl.dl-services {
cursor : pointer;
display : block;
height : var(--burger_size);
float : right;
margin-top : 10px;
}
header .nav-toggle span {
@ -291,5 +289,9 @@ dl.dl-services {
transform : rotate(-45deg);
top : calc( ( var(--burger_size) / 3 ) * -1 );
}
main article {
margin : calc(var(--base-grid) / 2);
}
}

View File

@ -2,7 +2,9 @@
<ol>
{{ $currentPage := . }}
{{ range .Site.Menus.nav }}
<li><a href="{{ .URL }}"{{ if (eq $currentPage.URL .URL) }} class="active"{{ end }}>{{ .Name }}</a></li>
{{ $atURL := absURL $currentPage.URL }}
{{ $compURL := absURL .URL }}
<li><a href="{{ .URL }}"{{ if (eq $atURL $compURL) }} class="active"{{ end }}>{{ .Name }}</a></li>
{{ end }}
</ol>