summaryrefslogtreecommitdiff
path: root/src/main.scss
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-02 17:12:57 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-02 17:12:57 -0500
commit4af48d58741e7b73d9d5cf88859711d64779e928 (patch)
tree3acdab38f63da5b875f2483e80b84e647436607d /src/main.scss
parent8680b35d7ffb60e509703ce9e9011cf9fd0f89b4 (diff)
fix css
Diffstat (limited to 'src/main.scss')
-rw-r--r--src/main.scss111
1 files changed, 58 insertions, 53 deletions
diff --git a/src/main.scss b/src/main.scss
index 4f5efc9..4917724 100644
--- a/src/main.scss
+++ b/src/main.scss
@@ -8,70 +8,74 @@ header {
background-color: black;
color: white;
p.breadcrumbs {
- background-color: blue;
+ background-color: Maroon;
+ margin: 0;
+ a {
+ color: GoldenRod;
+ }
}
h1 {
font-size: 50px;
margin: 0;
}
-}
-
-nav {
- /* layout */
- line-height: 1;
- width: 100%;
- ul {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- li {
- display: inline-block;
- }
- a {
- display: block;
- }
- /* pretty */
- background-color: Maroon;
- a {
- padding: 0.2em 1em;
-
- font-size: 40px;
- color: GoldenRod;
- text-decoration: none;
-
- &:hover, &:focus {
- background-color: white;
+ nav {
+ /* layout */
+ line-height: 1;
+ width: 100%;
+ ul {
+ padding: 0;
+ margin: 0;
+ list-style: none;
}
- &:hover, &:visited {
- color: GoldenRod;
+ li {
+ display: inline-block;
}
- &:active {
- color: Black;
+ a {
+ display: block;
}
- }
- form {
- padding: 0.2 1em;
- display: block;
- input {
- font-size: 25px;
- border: solid 1px #333333;
- }
- input[type="search"] {
- max-width: 10em;
- }
- input:first-child {
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- input:not(:last-child) {
- border-right: 0;
+ /* pretty */
+ background-color: Maroon;
+ a {
+ padding: 0.2em 1em;
+
+ font-size: 40px;
+ color: GoldenRod;
+ text-decoration: none;
+
+ &:hover, &:focus {
+ background-color: white;
+ }
+ &:hover, &:visited {
+ color: GoldenRod;
+ }
+ &:active {
+ color: Black;
+ }
}
- input:last-child {
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
+
+ form {
+ padding: 0.2 1em;
+ display: block;
+ input {
+ font-size: 25px;
+ border: solid 1px #333333;
+ }
+ input[type="search"] {
+ max-width: 10em;
+ }
+ input:first-child {
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ }
+ input:not(:last-child) {
+ border-right: 0;
+ }
+ input:last-child {
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ }
}
}
}
@@ -119,6 +123,7 @@ article {
text-align: center;
text-decoration: none;
color: white;
+ font-family: sans-serif;
}
.tag.FF { background: FireBrick; }
.tag.SS { background: SeaGreen; }