Skip to content

Commit cb4826f

Browse files
authored
Merge pull request #21 from To1ne/toon-dark-grid-header
css: place dark-mode icon next to tagline on mobile
2 parents 4ddc488 + f99dd15 commit cb4826f

File tree

5 files changed

+36
-69
lines changed

5 files changed

+36
-69
lines changed

assets/sass/application.scss

+1-14
Original file line numberDiff line numberDiff line change
@@ -53,24 +53,11 @@ pre {
5353
}
5454

5555
#dark-mode-button {
56+
grid-area: dark;
5657
display: none;
5758
width: 28px;
5859
background-color: transparent;
5960
text-decoration: none;
6061
align-self: center;
6162
margin: 5px;
6263
}
63-
64-
@media (max-width: $default + 100) {
65-
#dark-mode-button {
66-
top: 41px;
67-
right: 5px;
68-
}
69-
}
70-
71-
@media (max-width: $default) {
72-
#dark-mode-button {
73-
top: 5px;
74-
right: 20px;
75-
}
76-
}

assets/sass/forms.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ form#search {
4242
@include box-shadow(inset 0 1px 4px #ddd);
4343

4444
input {
45-
width: 100%;
45+
width: calc(100% - 10px);
4646
height: 20px;
4747
margin-top: 4px;
4848
margin-bottom: 2px;

assets/sass/layout.scss

+11-25
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ aside {
7777

7878
#masthead {
7979
height: 295px;
80-
margin-top: -20px;
8180
margin-bottom: 2em;
8281
@include background-image-2x($baseurl + "images/bg/isometric-grid", 35px, 21px, top right, repeat);
8382

@@ -110,30 +109,22 @@ aside {
110109

111110
// Header
112111
header {
113-
padding-bottom: 26px;
114-
margin-top: 14px;
112+
padding: 1rem 0;
115113

116-
display: flex;
117-
flex-direction: row;
114+
display: grid;
115+
grid-template-areas: "logo tagline search dark";
116+
grid-template-columns: auto 1fr auto auto;
117+
align-items: center;
118118

119-
div {
120-
display: flex;
121-
flex-direction: row;
122-
align-items: center;
123-
124-
&:first-child {
125-
flex-grow: 4;
126-
}
127-
}
128119
#logo {
120+
grid-area: logo;
129121
display: flex;
130122
}
131123

132124
#tagline {
133-
display: block;
134-
margin-left: 8px;
125+
grid-area: tagline;
126+
margin-left: 0.8em;
135127
font-size: clamp(0.8rem, 2vw, 1.3rem);
136-
line-height: 24px;
137128
color: var(--light-font-color);
138129

139130
em {
@@ -451,10 +442,7 @@ table.benchmarks {
451442
.responsive-table { overflow-x: auto; }
452443
.center img { height: 100%; }
453444
header{
454-
a, span {
455-
padding-left: 1rem;
456-
margin-bottom: 10px ;
457-
}
445+
padding: 1rem;
458446
}
459447
#content { width: 100%; }
460448
.inner { width: 100%; }
@@ -464,7 +452,6 @@ table.benchmarks {
464452
height: unset;
465453
.inner {
466454
display: flex;
467-
margin-top: 1.8rem;
468455
div:first-of-type {
469456
padding:1rem;
470457
}
@@ -489,13 +476,12 @@ table.benchmarks {
489476
// Mobile
490477
@media (max-width: $mobile-m) {
491478
header {
492-
padding-bottom: 3rem;
479+
grid-template-areas: "logo tagline dark"
480+
"search search search";
493481
#tagline {
494482
font-size: clamp(0.8rem, 3vw, 1.3rem);
495483
}
496-
flex-direction: column;
497484
}
498-
#home { .inner { > header { padding-bottom: 2.5rem; } } }
499485
#masthead {
500486
.inner { flex-direction: column-reverse; }
501487
.illustration-wrapper {

assets/sass/search.scss

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
@import "mixins";
33

44
#search-container {
5+
grid-area: search;
6+
display: flex;
57
position: relative;
68
width: 300px;
79
padding-left: 60px;
@@ -153,10 +155,6 @@ ol.full-search-results {
153155
@media (max-width: $mobile-m) {
154156
#search-container {
155157
width: inherit;
156-
margin-left: 15px;
157-
}
158-
#search-results{
159-
margin-top: 4px;
160158
}
161159
}
162160

layouts/partials/header.html

+21-25
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
<header>
2-
<div id="brand">
3-
<a id="logo" href="{{ relURL "" }}"><img src="{{ relURL "images/[email protected]" }}" width="110" height="46" alt="Git" class="no-filter" /></a>
4-
<span id="tagline"></span>
5-
<script type="text/javascript">
6-
const taglines = [
7-
"fast-version-control",
8-
"everything-is-local",
9-
"distributed-even-if-your-workflow-isnt",
10-
"local-branching-on-the-cheap",
11-
"distributed-is-the-new-centralized"
12-
];
13-
var tagline = taglines[Math.floor(Math.random() * taglines.length)];
14-
document.getElementById('tagline').innerHTML = '--' + tagline;
15-
</script>
16-
</div>
2+
<a id="logo" href="{{ relURL "" }}"><img src="{{ relURL "images/[email protected]" }}" width="110" height="46" alt="Git" class="no-filter" /></a>
3+
<span id="tagline"></span>
4+
<script type="text/javascript">
5+
const taglines = [
6+
"fast-version-control",
7+
"everything-is-local",
8+
"distributed-even-if-your-workflow-isnt",
9+
"local-branching-on-the-cheap",
10+
"distributed-is-the-new-centralized"
11+
];
12+
var tagline = taglines[Math.floor(Math.random() * taglines.length)];
13+
document.getElementById('tagline').innerHTML = '--' + tagline;
14+
</script>
1715

18-
<div>
19-
{{ if ne (.Scratch.Get "section") "search" }}
20-
<div id="search-container">
21-
<form id="search" action="{{ relURL "search/results" }}">
22-
<input id="search-text" name="search" placeholder="Type / to search entire site…" autocomplete="off" type="text" />
23-
</form>
24-
<div id="search-results"></div>
25-
</div>
26-
{{ end }}
27-
<img src="{{ relURL "images/dark-mode.svg" }}" id="dark-mode-button" />
16+
{{ if ne (.Scratch.Get "section") "search" }}
17+
<div id="search-container">
18+
<form id="search" action="{{ relURL "search/results" }}">
19+
<input id="search-text" name="search" placeholder="Type / to search entire site…" autocomplete="off" type="text" />
20+
</form>
21+
<div id="search-results"></div>
2822
</div>
23+
{{ end }}
24+
<img src="{{ relURL "images/dark-mode.svg" }}" id="dark-mode-button" />
2925
</header>

0 commit comments

Comments
 (0)