aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-01-26 20:35:40 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-01-26 20:35:40 +0100
commit4701a97bb9b582f8b9dfb5a7852778d3a290ff02 (patch)
tree6356c93e29e242f41ede30846aeb482d90866c05
parent1c02ee2f5136fd56bb480344af59e735974697ff (diff)
Tweak style changes
Signed-off-by: Noah Loomans <noahloomans@gmail.com>
-rw-r--r--style/_header.scss8
-rw-r--r--style/main.scss11
2 files changed, 15 insertions, 4 deletions
diff --git a/style/_header.scss b/style/_header.scss
index a5a33d4..28e8100 100644
--- a/style/_header.scss
+++ b/style/_header.scss
@@ -18,13 +18,13 @@ header {
border-image-repeat: round;
border-width: 0 8px 0 0;
margin-top: 32px;
- width: 50%;
+ width: calc(50% + 4px);
flex-grow: 1;
}
- }
- a {
- text-decoration: none;
+ a:hover {
+ background-color: inherit;
+ }
}
.logo {
diff --git a/style/main.scss b/style/main.scss
index 9641e7a..a261178 100644
--- a/style/main.scss
+++ b/style/main.scss
@@ -30,6 +30,7 @@ main, footer {
main {
margin-top: 32px;
+ line-height: 20px;
}
footer {
@@ -38,3 +39,13 @@ footer {
padding-top: 16px;
padding-bottom: 16px;
}
+
+a {
+ text-decoration: none;
+ color: #1a0dab;
+ outline: none;
+
+ &:hover, &:focus {
+ background-color: #ececec;
+ }
+}