Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/resources/styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/sig.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
318ACAF85024D323F3F60B8D63B1EC23
FBB2C1241F0FD138D012004E4AA98F0E
2 changes: 0 additions & 2 deletions web/styles/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@ body {
display: flex;
flex-direction: column;
-webkit-overflow-scrolling: touch;
}

body {
-webkit-text-size-adjust: 100%;
overflow-x: hidden;
font-family: Roboto, sans-serif;
Expand Down
28 changes: 13 additions & 15 deletions web/styles/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,25 @@ footer {
flex: 0 0 16px;
text-align: center;
padding: 16px 20px;
}

footer {
color: #fff;
background-color: var(--main-footer-background);
width: 100%;
}

footer p {
margin: 0;
}
p {
margin: 0;
}

footer .no-break {
white-space: nowrap;
}
.no-break {
white-space: nowrap;
}

footer .container {
padding-left: 0;
padding-right: 0;
}
.container {
padding-left: 0;
padding-right: 0;
}

footer a, footer a:hover {
color: #fff;
a, a:hover {
color: #fff;
}
}
34 changes: 17 additions & 17 deletions web/styles/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ header {
padding-left: 30px;
padding-right: 30px;
background-color: var(--main-header-color);
}

header ol {
list-style: none;
margin: 0;
padding: 0;
}
ol {
list-style: none;
margin: 0;
padding: 0;

header ol li {
display: inline;
}
li {
display: inline;
}
}

header form {
display: flex;
flex: 1;
justify-content: flex-end;
}
form {
display: flex;
flex: 1;
justify-content: flex-end;
}

header#header-search-sidebar {
height: 50px;
margin-bottom: 25px;
#header-search-sidebar {
height: 50px;
margin-bottom: 25px;
}
}
28 changes: 14 additions & 14 deletions web/styles/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

nav.navbar {
background-color: inherit;
min-height: 50px;
border: 0;
}
nav {
.navbar {
background-color: inherit;
min-height: 50px;
border: 0;

nav.navbar .row {
padding-top: 8px;
}
.row {
padding-top: 8px;
}
}

nav .container {
white-space: nowrap;
}
.container {
white-space: nowrap;

@media(max-width: 840px) {
nav .container {
width: 100%
@media(max-width: 840px) {
width: 100%;
}
}
}