Skip to content

Commit

Permalink
move css changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bengolder committed Mar 10, 2017
1 parent ae53dad commit 6c36743
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 241 deletions.
137 changes: 0 additions & 137 deletions css/style.css

This file was deleted.

212 changes: 108 additions & 104 deletions output/css/style.css
Original file line number Diff line number Diff line change
@@ -1,133 +1,137 @@
* {
sizing: border-box;
}
html {
// font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: "Open Sans";
}
* { sizing: border-box; }
html { font-family: "Open Sans", sans-serif; }

html, body {
margin: 0;
padding: 0;
color: rgba(26, 26, 26, 0.7);
margin: 0;
padding: 0;
color: rgba(26, 26, 26, 0.7);
}

header {
background-color: #e2c221;
padding: 1em 0;
}
header { background-color: #e2c221; padding: 1em 0; }
footer {
background-color: rgba(26, 26, 26, 0.9);
color: white; padding: 1em 0; }

main, .main-header-contents {
display: block;
max-width: 43em;
margin: 0 auto;
main, .main-header-contents, .main-header-contents {
display: block;
max-width: 43em;
margin: 0 auto;
}


h1, h2, h3, h4, h5, h6 {
font-family: "proxima-nova", "Open Sans", sans-serif;
color: rgba(26, 26, 26, 0.9);
}
h1 {
font-weight: 900;
font-family: "proxima-nova", "Open Sans", sans-serif;
color: rgba(26, 26, 26, 0.9);
}

h1 { font-weight: 900; }
h1 a, h2 a, h3 a { color: inherit }
h1 a:visited, h2 a:visited, h3 a:visited { color: inherit }

.sidebox {
color: white;
background-color: #001f3f;
padding: .5em;
background: white;
color
padding: .5em;
background-color: rgba(26, 26, 26, 0.9);
}

.textbox {
background-color: #7FDBFF;
padding: .5em;
padding: .5em;
border: 1px solid rgba(26, 26, 26, 0.9);
}

.important {
background-color: #FFDC00;
padding: .5em;
background-color: #FFDC00;
padding: .5em;
}

ul.footer-links {
padding: 0;
margin: 0;
}

ul a { color: inherit; text-decoration: none; }
ul a:visited { color: inherit; }
footer ul, footer p {text-align: center; }


/* Portrait */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {
header {
padding: 0;
}
main {
margin: 0;
padding: 1em;
}
main > h1:first-child {
margin-top: 0;
header {
padding: 0;
}
main {
margin: 0;
padding: 1em;
}
main > h1:first-child {
margin-top: 0;

}
.main-header-contents {
position: relative;
overflow: auto;
}
.main-header-contents > * {
float: left;
}
.site-navigation {
background-color: #303030;
color: #fff;
width: 4rem;
height: 4rem;
text-align: center;
}
.site-navigation .icon {
font-size: 2rem;
margin: 0;
padding: 0;
}
.site-navigation h1 {
text-transform: uppercase;
font-size: 0.6rem;
letter-spacing: 2px;
color: inherit;
margin: 0;
padding: 0;
font-weight: 500;
}
.titleblock {
width: 15rem;
border-left: 2px solid #fff;
padding: 0 0 0 0;
height: 4rem;
}
.titleblock > * {
font-size: 0.8rem;
text-transform: uppercase;
margin: 0;
padding: 0 0 0 .8rem;
letter-spacing: 1px;
}
.titleblock > h1 {
font-weight: 700;
}
.titleblock > .subtitle {
padding-top: 1rem;
color: #fff;
font-weight: 600;
}
.table-of-contents li {
text-decoration: underline;
}
ol.table-of-contents {
padding-left: 0;
list-style-type: none;
}
.table-of-contents ol {
padding-left: 0;
list-style-type: none;
}
.table-of-contents li + li {
margin-top: .5em;
}
}
.main-header-contents {
position: relative;
overflow: auto;
}
.main-header-contents > * {
float: left;
}
.site-navigation {
background-color: #303030;
color: #fff;
width: 4rem;
height: 4rem;
text-align: center;
}
.site-navigation .icon {
font-size: 2rem;
margin: 0;
padding: 0;
}
.site-navigation h1 {
text-transform: uppercase;
font-size: 0.6rem;
letter-spacing: 2px;
color: inherit;
margin: 0;
padding: 0;
font-weight: 500;
}
.titleblock {
width: 15rem;
border-left: 2px solid #fff;
padding: 0 0 0 0;
height: 4rem;
}
.titleblock > * {
font-size: 0.8rem;
text-transform: uppercase;
margin: 0;
padding: 0 0 0 .8rem;
letter-spacing: 1px;
}
.titleblock > h1 {
font-weight: 700;
}
.titleblock > .subtitle {
padding-top: 1rem;
color: #fff;
font-weight: 600;
}
.table-of-contents li {
text-decoration: underline;
}
ol.table-of-contents {
padding-left: 0;
list-style-type: none;
}
.table-of-contents ol {
padding-left: 0;
list-style-type: none;
}
.table-of-contents li + li {
margin-top: .5em;
}
}

0 comments on commit 6c36743

Please sign in to comment.