Fix featured extensions list

This commit is contained in:
Ray Schamp 2015-05-06 11:07:48 -04:00
parent 1680b462bd
commit ed93253f23
4 changed files with 38 additions and 3 deletions

View file

@ -551,7 +551,7 @@ ol {
list-style-type: none;
margin: 0;
padding: 0; }
body > main > article section ul {
body > main > article > section ul {
list-style-type: disc;
margin-bottom: 0.75em;
padding-left: 1.5em; }
@ -900,6 +900,28 @@ body #home {
.extension-feature ul li {
border-bottom: 1px solid #dfe3e7;
padding: 0.75em; }
.extension-feature ul li a {
position: relative;
display: block; }
.extension-feature ul li a:before {
content: "";
font-family: "ScratchX";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
font-size: 1em;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #21b4f0;
position: absolute;
right: 0;
top: 50%;
margin-top: -.5em;
font-size: 1.5em; }
.extension-feature ul li h3 {
font-size: 1.125em;
font-weight: 600;

File diff suppressed because one or more lines are too long

View file

@ -81,7 +81,7 @@ article header h1 + p {
@include shift(1);
}
body > main > article section {
body > main > article > section {
ul {
@extend %default-ul;
}

View file

@ -99,6 +99,19 @@ body {
border-bottom: 1px solid $light-gray;
padding: 2 * $vertical-base;
a {
position: relative;
display: block;
@include icon(before, right-arrow) {
color: $blue;
position: absolute;
right: 0;
top: 50%;
margin-top: -.5em;
font-size: 1.5em;
}
}
h3 {
font-size: 1.125 * $base-font-size;
font-weight: 600;