-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #750 from alexwlchan/tidy-up-css
Continue tidying up the Sass files
- Loading branch information
Showing
15 changed files
with
72 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
<nav> | ||
<div id="nav_inner"> | ||
<h1><a href="/" aria-label="alex w l chan" aria-braillelabel="alexwlchan">alexwlchan</a></h1> | ||
<h1><a href="/">alexwlchan</a></h1> | ||
|
||
<ul class="dot_list"> | ||
<li><a href="/">about</a></li> | ||
<li><a href="/writing/">writing</a></li> | ||
<li><a href="/projects/">projects</a></li> | ||
<li><a href="/contact/">contact</a></li> | ||
<li><a href="/atom.xml">rss</a></li> | ||
</ul> | ||
</div> | ||
<ul class="dot_list"> | ||
<li><a href="/">about</a></li> | ||
<li><a href="/writing/">writing</a></li> | ||
<li><a href="/projects/">projects</a></li> | ||
<li><a href="/contact/">contact</a></li> | ||
<li><a href="/atom.xml">rss</a></li> | ||
</ul> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
footer { | ||
padding-top: 15px; | ||
padding-bottom: 15px; | ||
|
||
background: var(--primary-color-light); | ||
} | ||
|
||
#footer_inner { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
nav { | ||
background: var(--nav-background-url) var(--primary-color-light); | ||
background-size: auto 100%; | ||
|
||
color: white; | ||
|
||
a, a:visited { | ||
@include link_styles(white, 0.5); | ||
} | ||
|
||
h1 { | ||
padding-top: calc(1px + env(safe-area-inset-top)); | ||
margin-bottom: -5px; | ||
font-size: 1.7em; | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
ul { | ||
padding: 0; | ||
padding-bottom: 1px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
@media print { | ||
background: none; | ||
border-bottom: var(--border-width) solid var(--primary-color-light); | ||
color: var(--primary-color-light); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters