198 lines
No EOL
2.9 KiB
SCSS
198 lines
No EOL
2.9 KiB
SCSS
@import "global";
|
|
|
|
.icon-fixed-width {
|
|
/* This borrowed is from a component of Font Awesome we're not using, maybe add it? */
|
|
width: (18em / 14);
|
|
text-align: center;
|
|
}
|
|
|
|
section
|
|
{
|
|
margin-bottom: $spacing-vertical;
|
|
section {
|
|
/* Smaller padding around inner sections */
|
|
margin-bottom: $spacing-vertical / 4;
|
|
}
|
|
&:last-child
|
|
{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
main h1 {
|
|
font-size: 2.0em;
|
|
margin-bottom: $spacing-vertical;
|
|
margin-top: $spacing-vertical*2;
|
|
font-family: 'Raleway', sans-serif;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.75em;
|
|
}
|
|
|
|
h3 { font-size: 1.4em; }
|
|
|
|
h4 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
h5 { font-size: 1.1em; }
|
|
sup, sub {
|
|
vertical-align: baseline;
|
|
position: relative;
|
|
}
|
|
sup { top: -0.4em; }
|
|
sub { top: 0.4em; }
|
|
|
|
label {
|
|
cursor: default;
|
|
display: block;
|
|
}
|
|
|
|
p
|
|
{
|
|
margin-bottom: 0.8em;
|
|
&:last-child
|
|
{
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
height: 190px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.disabled {
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
input[type="text"], input[type="search"], textarea
|
|
{
|
|
@include placeholder {
|
|
color: lighten($color-text-dark, 60%);
|
|
}
|
|
border: 0 none;
|
|
border: 2px solid rgba(160,160,160,.5);
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
height: $spacing-vertical * 1.5;
|
|
line-height: $spacing-vertical - 4;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.busy-indicator
|
|
{
|
|
background: url('../img/busy.gif') no-repeat center center;
|
|
display: inline-block;
|
|
margin: -1em 0;
|
|
min-width: 16px;
|
|
min-height: 8px;
|
|
vertical-align: middle;
|
|
padding: 0 30px;
|
|
&:last-child
|
|
{
|
|
padding-right: 2px;
|
|
}
|
|
&:first-child
|
|
{
|
|
padding-left: 2px;
|
|
}
|
|
}
|
|
|
|
.button-block
|
|
{
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: $spacing-vertical * 1.5;
|
|
line-height: $spacing-vertical * 1.5;
|
|
padding: 0 30px;
|
|
text-decoration: none;
|
|
border: 0 none;
|
|
text-align: center;
|
|
border-radius: 2px;
|
|
text-transform: uppercase;
|
|
+ .button-block
|
|
{
|
|
margin-left: 20px;
|
|
}
|
|
.icon
|
|
{
|
|
top: 0em;
|
|
}
|
|
.icon:first-child
|
|
{
|
|
padding-right: 5px;
|
|
}
|
|
.icon:last-child
|
|
{
|
|
padding-left: 5px;
|
|
}
|
|
}
|
|
|
|
.button-primary
|
|
{
|
|
color: white;
|
|
background-color: $color-primary;
|
|
box-shadow: $default-box-shadow;
|
|
}
|
|
.button-alt
|
|
{
|
|
background-color: rgba(0,0,0,.15);
|
|
box-shadow: $default-box-shadow;
|
|
}
|
|
.button-text
|
|
{
|
|
color: $color-primary;
|
|
.icon
|
|
{
|
|
&:first-child {
|
|
padding-right: 5px;
|
|
}
|
|
&:last-child:not(:only-child) {
|
|
padding-left: 5px;
|
|
}
|
|
}
|
|
|
|
&:not(.no-underline) {
|
|
text-decoration: underline;
|
|
.icon {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
&:hover
|
|
{
|
|
opacity: 0.70;
|
|
transition: opacity .225s ease;
|
|
text-decoration: underline;
|
|
.icon {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon:only-child {
|
|
position: relative;
|
|
top: 0.16em;
|
|
}
|
|
|
|
.help {
|
|
font-size: .85em;
|
|
color: $color-help;
|
|
}
|
|
|
|
.form-row
|
|
{
|
|
+ .form-row
|
|
{
|
|
margin-top: $spacing-vertical / 2;
|
|
}
|
|
.help
|
|
{
|
|
margin-top: $spacing-vertical / 2;
|
|
}
|
|
} |