This commit is contained in:
2018-04-24 20:41:34 -05:00
commit 0348bb3c42
43 changed files with 5169 additions and 0 deletions

View File

@ -0,0 +1,10 @@
article {
margin: 0 auto;
max-width: 80rem;
}
@media screen and (max-width: #{$screen-tablet - 1}) {
article {
margin: 0 $gutter;
}
}

View File

@ -0,0 +1,3 @@
body {
min-width: 320px;
}

View File

View File

@ -0,0 +1,4 @@
form {
margin: 0;
padding: 0;
}

View File

View File

@ -0,0 +1,13 @@
h1,
h2,
h3,
h4,
h5,
h6 {
margin: $gutter 0;
padding: 0;
}
h6 {
margin: $gutter 0 0;
}

View File

@ -0,0 +1,6 @@
img {
display: block;
width: 100%;
max-width: 100vw;
height: auto;
}

View File

@ -0,0 +1,31 @@
.select-wrapper,
textarea,
[type="email"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"] {
border: 0;
box-shadow: $box-shadow-light;
background-color: $gray-light;
padding: 8px;
width: 100%;
.dark & {
box-shadow: none;
background-color: $white;
}
}
.select-wrapper {
padding: 7px 6px 6px;
width: 100%;
select {
outline-offset: 6px;
border: 0;
background: transparent;
padding: 6px 0;
width: 100%;
}
}

View File

@ -0,0 +1,5 @@
body:not(.is-touch) {
a:hover {
text-decoration: none;
}
}

View File

View File

@ -0,0 +1,3 @@
main {
position: relative;
}

View File

@ -0,0 +1,4 @@
p {
margin: 0 0 $gutter;
padding: 0;
}

View File

@ -0,0 +1,5 @@
@media screen and (max-width: #{$screen-tablet - 1}) {
section {
margin: 0 $gutter;
}
}

View File

@ -0,0 +1,4 @@
video {
width: 100%;
height: auto;
}