scratch-www/src/views/download/download.scss

129 lines
2.5 KiB
SCSS
Raw Normal View History

2017-04-01 10:55:47 -04:00
@import "../../colors";
@import "../../frameless";
2017-05-24 20:19:49 -04:00
$developer-spot: $splash-blue;
2017-04-01 10:55:47 -04:00
#view {
padding: 0;
}
.download {
.title-banner {
&.masthead {
margin-bottom: 0;
2017-04-01 10:55:47 -04:00
background-color: $developer-spot;
padding-bottom: 0;
h1 {
margin: 0 0 2rem 0;
text-align: left;
color: $ui-white;
}
p {
margin: 0;
text-align: left;
color: $ui-white;
a {
border-bottom: 1px solid $ui-white;
color: $ui-white;
}
}
.band {
2017-05-24 20:19:49 -04:00
$band-color: #3baddd;
2017-04-01 10:55:47 -04:00
margin-top: 2rem;
background-color: $band-color;
padding: 1rem 0;
}
.sub-nav {
text-align: left;
justify-content: flex-start;
li {
margin: 0 .5rem 0 0;
}
}
}
}
.sub-nav-item {
margin: .5rem;
}
2017-07-07 20:17:03 -04:00
.callout {
text-align: center;
}
2017-05-20 00:24:18 -04:00
.download-content {
2017-04-06 10:40:46 -04:00
padding-bottom: 2rem;
2017-05-20 00:24:18 -04:00
}
2017-06-02 08:13:29 -04:00
.three-col-row {
align-items: flex-start;
}
2017-05-20 00:24:18 -04:00
.installation {
2017-06-19 11:41:44 -04:00
background-color: $ui-gray;
padding: 2rem;
2017-05-20 00:24:18 -04:00
}
2017-05-20 00:24:18 -04:00
.installation-column {
max-width: $cols4;
text-align: center;
}
.installation-column-number {
margin: 2rem auto;
border: 2px solid $active-gray;
border-radius: 2rem;
box-shadow: 0 0 0 .5rem lighten($ui-blue, 35);
background-color: $ui-blue;
width: 3.75rem;
height: 3.75rem;
}
.installation-column-number-text {
text-align: center;
line-height: 1.8em;
color: $type-white;
2017-05-20 00:24:18 -04:00
}
2017-05-20 00:24:18 -04:00
.installation-downloads {
2017-05-24 20:19:49 -04:00
padding-left: 0;
2017-05-24 23:48:37 -04:00
list-style: none;
2017-05-20 00:24:18 -04:00
}
2017-05-20 00:24:18 -04:00
.installation-downloads-item {
2017-05-22 11:58:55 -04:00
margin: .25rem;
2017-05-20 00:24:18 -04:00
padding: 0;
text-align: center;
2017-05-03 16:19:56 -04:00
}
2017-05-24 20:19:49 -04:00
section {
margin-bottom: 2rem;
}
2017-05-24 20:19:49 -04:00
.mod-link {
color: $ui-white;
}
2017-05-03 16:19:56 -04:00
@media only screen and (max-width: $mobile - 1) {
.inner {
2017-05-20 00:24:18 -04:00
.installation-column {
2017-05-24 20:19:49 -04:00
max-width: 100%;
2017-05-03 16:19:56 -04:00
}
2017-04-06 10:40:46 -04:00
}
}
@media only screen and (max-width: $desktop - 1) {
2017-06-13 16:58:01 -04:00
.three-col-row {
flex-direction: column;
2017-06-13 16:58:01 -04:00
align-items: center;
}
2017-04-06 10:40:46 -04:00
}
2017-04-01 10:55:47 -04:00
}