2016-03-15 17:05:11 +01:00
|
|
|
@import "global";
|
|
|
|
|
|
|
|
html
|
|
|
|
{
|
|
|
|
height: 100%;
|
|
|
|
font-size: $font-size;
|
|
|
|
}
|
|
|
|
body
|
|
|
|
{
|
|
|
|
font-family: 'Raleway', sans-serif;
|
|
|
|
line-height: 1.3333;
|
|
|
|
min-height: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-05-23 14:16:14 +02:00
|
|
|
.page {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 800px;
|
|
|
|
|
2016-06-03 12:05:14 +02:00
|
|
|
&.full-screen {
|
2016-05-23 14:16:14 +02:00
|
|
|
width: 100%;
|
2016-06-03 12:05:14 +02:00
|
|
|
height: 100%;
|
2016-05-23 14:16:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-27 13:04:37 +02:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2016-04-10 02:00:56 +02:00
|
|
|
section
|
|
|
|
{
|
|
|
|
margin-bottom: $spacing-vertical;
|
|
|
|
&:last-child
|
|
|
|
{
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-23 16:24:23 +02:00
|
|
|
h1 { font-size: 2.0em; margin-bottom: $spacing-vertical / 2; margin-top: $spacing-vertical; }
|
2016-03-15 17:05:11 +01:00
|
|
|
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; }
|
2016-04-10 02:00:56 +02:00
|
|
|
label { cursor: pointer; }
|
2016-03-15 17:05:11 +01:00
|
|
|
|
2016-04-10 02:00:56 +02:00
|
|
|
header
|
|
|
|
{
|
|
|
|
line-height: $spacing-vertical;
|
2016-03-25 08:31:20 +01:00
|
|
|
}
|
|
|
|
|
2016-04-24 10:59:55 +02:00
|
|
|
p
|
|
|
|
{
|
|
|
|
margin-bottom: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-04-03 14:45:33 +02:00
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-04-21 12:55:41 +02:00
|
|
|
.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2016-03-15 17:05:11 +01:00
|
|
|
input[type="search"]
|
|
|
|
{
|
|
|
|
border: 0 none;
|
|
|
|
border: 1px solid rgba(160,160,160,.5);
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
height: $spacing-vertical * 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 15px;
|
|
|
|
text-decoration: none;
|
|
|
|
border: 0 none;
|
|
|
|
text-align: center;
|
|
|
|
+ .button-block
|
|
|
|
{
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2016-04-25 12:57:47 +02:00
|
|
|
.icon
|
|
|
|
{
|
|
|
|
top: 0em;
|
|
|
|
}
|
2016-03-15 17:05:11 +01:00
|
|
|
.icon:first-child
|
|
|
|
{
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.icon:last-child
|
|
|
|
{
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-primary
|
|
|
|
{
|
|
|
|
color: white;
|
|
|
|
@include linear-gradient(lighten($color-primary, 5), darken($color-primary, 5));
|
|
|
|
background-color: $color-primary;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
.button-alt
|
|
|
|
{
|
|
|
|
@include linear-gradient(lighten($color-light-alt, 5), darken($color-light-alt, 5));
|
|
|
|
color: hsl(hue($color-primary), 85, 15);
|
|
|
|
border: 1px solid darken($color-primary, 10);
|
|
|
|
}
|
|
|
|
.button-text
|
|
|
|
{
|
|
|
|
color: $color-primary;
|
2016-05-27 13:04:37 +02:00
|
|
|
.icon
|
2016-05-16 11:54:58 +02:00
|
|
|
{
|
2016-05-27 13:04:37 +02:00
|
|
|
&:first-child {
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
&:last-child:not(:only-child) {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.no-underline) {
|
|
|
|
text-decoration: underline;
|
|
|
|
.icon {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-05-16 11:54:58 +02:00
|
|
|
}
|
2016-04-10 02:00:56 +02:00
|
|
|
&:hover
|
|
|
|
{
|
|
|
|
opacity: 0.70;
|
|
|
|
transition: opacity .225s ease;
|
2016-05-27 13:04:37 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
.icon {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2016-04-10 02:00:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-16 11:54:58 +02:00
|
|
|
.icon:only-child {
|
2016-04-25 12:57:47 +02:00
|
|
|
position: relative;
|
|
|
|
top: 0.16em;
|
|
|
|
}
|
|
|
|
|
2016-04-10 02:00:56 +02:00
|
|
|
.fade-in-link {
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.help
|
|
|
|
{
|
|
|
|
color: $color-help;
|
2016-03-25 08:31:20 +01:00
|
|
|
}
|