/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
img {
max-width: 100%;
height: auto;
}
/* ==========================================================================
Font-face family >> fonts/stylesheet.css
========================================================================== */
@sans-serif: sans-serif;
@nunito: "Nunito", sans-serif;
@ariel-narrow: "Arial Narrow", "Arial", sans-serif;
/* ==========================================================================
Font-face family >> fonts/stylesheet.css
========================================================================== */
@text-shadow: 0 -1px 5px rgba(150, 150, 150, 1);
@box-shadow-top: 0 -4px 2px -2px rgba(0, 0, 0, 0.4);
@box-shadow-right: 4px 0 2px -2px rgba(0, 0, 0, 0.4);
@box-shadow-bottom: 0 4px 2px -2px rgba(0, 0, 0, 0.4);
@box-shadow-left: -4px 0 2px -2px rgba(0, 0, 0, 0.4);
@light: 300;
@regular: 400;
@medium: 500;
@semibold: 600;
@bold: 700;
@extrabold: 900;
/* ==========================================================================
Font-size / responsive fonts >>
========================================================================== */
@font-size-base: 18px;
@font-size-xxl: ceil(@font-size-base * 6);
@font-size-xl: ceil(@font-size-base * 5);
@font-size-large: ceil(@font-size-base * 3.6);
@font-size-default: ceil(@font-size-base * 1);
@font-size-small: ceil(@font-size-base * 0.95);
@font-size-h1: floor((@font-size-base * 3.6));
@font-size-h2: floor((@font-size-base * 3.15));
@font-size-h3: floor((@font-size-base * 2.2));
@font-size-h4: floor((@font-size-base * 1.5));
@font-size-h5: @font-size-base;
@font-size-h6: floor((@font-size-base * 0.85));
@line-height-base: 1.3;
@line-height-small: 1;
@line-height-medium: 1.5;
@line-height-large: 2;
@line-height-single: floor((@line-height-base * 1));
@line-height-normal: @line-height-base;
@line-height-double: floor((@line-height-base * 2.2));
@line-height-triple: floor((@line-height-base * 3));
@line-height-social-label: floor((@line-height-base * 3.6));
/* ==========================================================================
Global Colors - defined
========================================================================== */
@primary_color: #000066;
@second_color: #01ff00;
@text-color: #121111;
@darkgray: #333333;
@black: #000000;
@lightgray: #f3f3f3;
@gray: #716b5c;
@white: #ffffff;
@transparent: transparent;
@errors: darkred;
@success: darkgreen;
@info: darkblue;
@warning: gold;
/* ==========================================================================
Helpers
========================================================================== */
ul.horizon {
width: 100%;
margin: 0;
padding: 0;
display: block;
position: relative;
display: block;
overflow: hidden;
float: left;
}
ul.horizon li {
float: left;
list-style-type: none;
&.right {
float: right !important;
}
}
.hidden {
display: none;
}
.clear,
.clearfix {
width: 100%;
clear: both;
position: relative;
margin: 0;
padding: 0;
}
a {
text-decoration: none !important;
}
.js-fail {
position: absolute;
top: 0;
left: 0;
display: block;
background: #f00;
color: #fff;
text-align: center;
z-index: 99999 !important;
width: 100%;
max-width: 100%;
padding: 0.5em 1em 0;
}
button,
.btn {
border-radius: 0 !important;
color: @second_color;
font-weight: @bold !important;
text-transform: uppercase;
&.default {
background: @second_color !important;
color: @white !important;
}
&.second {
background: @white !important;
color: @second_color !important;
}
&:focus {
outline: 0 dotted !important;
outline: 0 auto -webkit-focus-ring-color !important;
}
}
textarea,
select {
width: 100% !important;
}
.form-control {
border: 1px solid #c2c2c2 !important;
}
a:hover {
color: @black;
-webkit-transition: all 0.5s ease 0s;
-moz-transition: all 0.5s ease 0s;
-o-transition: all 0.5s ease 0s;
transition: all 0.5s ease 0s;
}
/* ==========================================================================
Body
========================================================================== */
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
position: relative;
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: 100%;
font-family: @ariel-narrow !important;
font-weight: @regular;
font-size: @font-size-base !important;
color: @text-color;
line-height: @line-height-normal;
overflow-x: hidden;
p {
color: @text-color;
margin: 0;
padding: 0;
}
}