Linting and minor changes

This commit is contained in:
Sam Potts
2017-10-27 15:06:16 +11:00
parent 71db66d802
commit dd9d5c8898
20 changed files with 8509 additions and 81 deletions

View File

@ -51,16 +51,14 @@
&::before {
content: '';
position: absolute;
display: block;
width: @arrow-size;
height: @arrow-size;
left: 1px;
width: 0;
height: 0;
right: 100%;
top: 50%;
margin-top: -(@arrow-size / 2);
transform: translateY(-50%);
background: inherit;
border: inherit;
border-width: 1px 0 0 1px;
transform: rotate(-45deg) translate(-50%, -50%);
border: @arrow-size solid transparent;
border-right-color: #fff;
border-left-width: 0;
}
}

View File

@ -3,22 +3,18 @@
// ==========================================================================
header {
padding: @spacing-base;
padding-bottom: @spacing-base;
text-align: center;
p {
.font-size(@font-size-large);
margin-bottom: @spacing-base * 1.5;
}
@media @mq-sm {
padding-top: (@spacing-base * 3);
padding-bottom: (@spacing-base * 3);
margin-bottom: (@spacing-base * 1.5);
}
@media @mq-md {
max-width: 400px;
margin-right: (@spacing-base * 2);
padding-bottom: (@spacing-base * 2);
text-align: left;
}
}