1031 lines
22 KiB
CSS
1031 lines
22 KiB
CSS
/** CSS File for Éditions Législatives
|
|
* @website : Éditions Législatives
|
|
* @author : Alexis Pelé
|
|
*/
|
|
|
|
/* CSS RESETS */
|
|
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font-size: 100%;
|
|
font: inherit;
|
|
vertical-align: baseline;
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
}
|
|
/* Removes the extra pixels for input, selects and textarea fields */
|
|
select, input, textarea {
|
|
box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
}
|
|
/* Removes unordered list dots */
|
|
ul {
|
|
list-style-type: none;
|
|
}
|
|
/* Allows people to modify easily links' colours without targetting the a element */
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
/* Prevents the weird rectangle outline when a round button is toggled */
|
|
button:focus,
|
|
input:focus,
|
|
select:focus {
|
|
outline: none;
|
|
}
|
|
|
|
/* === GENERAL RULES === */
|
|
body,
|
|
input,
|
|
textarea {
|
|
font-family: 'Open Sans', serif;
|
|
color: #111;
|
|
}
|
|
/* Sets the padding for the whole page */
|
|
body > *:not(footer),
|
|
.contact-info,
|
|
.sitemap {
|
|
padding-right: 17.5%;
|
|
padding-left: 17.5%;
|
|
}
|
|
h1 {
|
|
font-size: 1.3em;
|
|
font-weight: 600;
|
|
}
|
|
p {
|
|
font-size: 0.92em;
|
|
font-weight: 400;
|
|
}
|
|
b {
|
|
font-weight: 600;
|
|
}
|
|
/* Superscript */
|
|
sup {
|
|
vertical-align: super;
|
|
font-size: 70%;
|
|
}
|
|
|
|
|
|
/* =========== LANDING SECTION =========== */
|
|
.landing {
|
|
min-height: 90vh;
|
|
padding-top: 2.5rem;
|
|
padding-bottom: 5rem;
|
|
background: url("../img/landing-background.jpg");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
/* HEADER */
|
|
.landing header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.logo {
|
|
max-width: 150px;
|
|
}
|
|
.landing nav {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.landing nav > * {
|
|
margin-left: 2.5rem;
|
|
}
|
|
/* Phone Number */
|
|
.landing .phone {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.landing .phone address {
|
|
font-size: 0.95em;
|
|
font-weight: 600;
|
|
}
|
|
.landing .phone .free-tooltip {
|
|
margin-left: 10px;
|
|
padding: 2px 5px;
|
|
font-size: 0.75em;
|
|
color: #FFF;
|
|
background: #00a0a3;
|
|
border-radius: 10px;
|
|
}
|
|
/* My Cart */
|
|
.landing nav .my-cart a{
|
|
position: relative;
|
|
}
|
|
.landing nav .my-cart span{
|
|
font-size: 1.35em;
|
|
vertical-align: middle;
|
|
}
|
|
.landing nav .my-cart .cart-itemcounter {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
width: 15px;
|
|
height: 15px;
|
|
font-size: 0.7em;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
color: #FFF;
|
|
background: #ed0959;
|
|
border-radius: 50%;
|
|
}
|
|
/* Log in button */
|
|
.landing nav .login-btn {
|
|
padding: 10px 25px;
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
color: #111;
|
|
background: #FFF;
|
|
border-radius: 25px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.landing nav .login-btn:hover {
|
|
color: #FFF;
|
|
background: #111;
|
|
}
|
|
|
|
/* == MENU FORMATTING == */
|
|
/* Menu button */
|
|
/* update by Juan */
|
|
.landing nav .menu {
|
|
position: relative;
|
|
color: #FFF;
|
|
border-radius: 50%;
|
|
}
|
|
.landing nav .menu-btn {
|
|
width: 50px;
|
|
height: 50px;
|
|
font-size: 0.65em;
|
|
font-weight: 600;
|
|
color: #000;
|
|
background: #FFF;
|
|
border: none;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
}
|
|
#show-menu:checked ~ .menu-btn,
|
|
.landing nav .menu .menu-btn:hover {
|
|
color: #FFF;
|
|
background: #000;
|
|
}
|
|
/* Transformation effects */
|
|
/* style depends on show menu being checked rather than active, this replaces js */
|
|
#show-menu ~ .menu-body .menu-item a
|
|
{
|
|
transform: scale(0);
|
|
transform-origin: 20px 20px;
|
|
}
|
|
#show-menu:checked ~ .menu-body .menu-item a
|
|
{
|
|
transform: scale(1);
|
|
transform-origin: 20px 20px;
|
|
transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
|
|
}
|
|
|
|
#show-menu:checked ~ .menu-body .menu-item:nth-child(1) a {transition-delay: 0.3s}
|
|
#show-menu:checked ~ .menu-body .menu-item:nth-child(2) a {transition-delay: 0.2s}
|
|
#show-menu:checked ~ .menu-body .menu-item:nth-child(3) a {transition-delay: 0.1s}
|
|
|
|
.landing nav .menu .menu-body {
|
|
position: absolute;
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
right: 0;
|
|
margin-top: 10px;
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
.landing nav .menu .menu-body .menu-item a {
|
|
width: 40px;
|
|
height: 40px;
|
|
position: relative;
|
|
margin-right: 15px;
|
|
display: block;
|
|
line-height: 40px;
|
|
background: #000;
|
|
border-radius: 50%;
|
|
}
|
|
/* Fixes a positionning bug in IE11 */
|
|
.landing nav .menu .menu-body > .menu-item:nth-child(1) { order: 4 }
|
|
.landing nav .menu .menu-body > .menu-item:nth-child(2) { order: 3 }
|
|
.landing nav .menu .menu-body > .menu-item:nth-child(3) { order: 2 }
|
|
.landing nav .menu .menu-body > .menu-item:nth-child(4) { order: 1 }
|
|
/* Colour formatting no need to depend on active */
|
|
.landing nav .menu .menu-body .menu-item:nth-child(1) a:hover {background: #00a0a3}
|
|
.landing nav .menu .menu-body .menu-item:nth-child(2) a:hover {background: #9b1f82}
|
|
.landing nav .menu .menu-body .menu-item:nth-child(3) a:hover {background: #ed0959}
|
|
.landing nav .menu .menu-body .menu-item:nth-child(4) a:hover {background: #0073be}
|
|
|
|
/* extra css so label behaves like a button */
|
|
label.menu-btn
|
|
{
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/* MAIN SECTION (NEWS + FORM) */
|
|
.landing .news-container {
|
|
margin-top: 5rem;
|
|
display: flex;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
border-bottom-left-radius: 25px;
|
|
-webkit-box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.2);
|
|
-moz-box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.2);
|
|
box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
/* News section */
|
|
.landing .news-container article {
|
|
position: relative;
|
|
padding: 5rem 9rem 5rem 4rem;
|
|
}
|
|
.landing .news-container article:after {
|
|
position: absolute;
|
|
top: 5rem;
|
|
right: 0;
|
|
content: "";
|
|
display: block;
|
|
height: 140px;
|
|
width: 35px;
|
|
background-image: linear-gradient(to bottom, #00a0a3 25%, #9b1f82 25%, #9b1f82 50%, #ed0959 50%, #ed0959 75%, #0073be 75%, #0073be 100%)
|
|
}
|
|
.landing .news-container article h1:after {
|
|
content: "";
|
|
display: block;
|
|
width: 40px;
|
|
height: 5px;
|
|
margin: 15px 0 20px;
|
|
background: rgba(0, 0, 0, 0.14);
|
|
transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
}
|
|
.landing .news-container article h1:hover {
|
|
color: #0073be;
|
|
transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
}
|
|
.landing .news-container article h1:hover:after {
|
|
width: 100px;
|
|
background: #0073be;
|
|
transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
|
|
}
|
|
|
|
/* Search form section */
|
|
.landing .news-container form {
|
|
padding: 2rem;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
background: url("../img/form-filter.png");
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.landing .news-container form label {
|
|
margin-bottom: 0.5rem;
|
|
font-size: 1.5em;
|
|
font-weight: 600;
|
|
}
|
|
.landing .news-container form input,
|
|
.landing .news-container form select {
|
|
display: block;
|
|
width: 100%;
|
|
min-width: 300px;
|
|
margin: 0.5rem 0;
|
|
padding: 10px 14px;
|
|
color: #555;
|
|
background: #FFF;
|
|
border: solid 1px rgba(0, 0, 0, 0.2);
|
|
border-radius: 16px;
|
|
}
|
|
.landing .news-container form input:focus,
|
|
.landing .news-container form select:focus {
|
|
-moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
|
|
border: solid 1px rgba(0, 0, 0, 0.3);
|
|
}
|
|
.landing .news-container form .select-wrapper {
|
|
position: relative;
|
|
}
|
|
.landing .news-container form select {
|
|
position: relative;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
cursor: pointer;
|
|
}
|
|
.landing .news-container form .select-wrapper span {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 10px;
|
|
transform: translateY(-50%);
|
|
color: rgba(0, 0, 0, 0.3);
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
}
|
|
.landing .news-container form button {
|
|
width: 100%;
|
|
margin-top: 0.5rem;
|
|
padding: 10px 14px;
|
|
font-weight: 600;
|
|
color: #FFF;
|
|
background: #111;
|
|
border: none;
|
|
border-radius: 16px;
|
|
cursor: pointer;
|
|
}
|
|
.landing .news-container form button:hover {
|
|
background: #0073be;
|
|
}
|
|
|
|
/* =========== OUR PRODUCTS SECTION =========== */
|
|
/* General */
|
|
.ourproducts {
|
|
padding-top: 4rem;
|
|
padding-bottom: 4rem;
|
|
}
|
|
|
|
/* Products' tags header */
|
|
.ourproducts > header {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.ourproducts > header label {
|
|
font-size: 0.9em;
|
|
font-weight: 600;
|
|
}
|
|
.ourproducts > header .btn-group {
|
|
margin: 0 1rem;
|
|
}
|
|
.ourproducts > header .btn-group button {
|
|
margin: 5px 3px 5px;
|
|
padding: 10px 14px;
|
|
font-size: 0.7em;
|
|
font-weight: 600;
|
|
border: 1px solid transparent;
|
|
border-radius: 16px;
|
|
cursor: pointer;
|
|
}
|
|
/* Button effects */
|
|
.ourproducts > header .btn-group button:not(.active) {
|
|
color: #777;
|
|
background: none;
|
|
border: 1px solid #AAA;
|
|
}
|
|
.ourproducts > header .btn-group button:not(.active):hover {
|
|
color: #3A3A3A;
|
|
background: #DDD;
|
|
border: 1px solid transparent;
|
|
}
|
|
.ourproducts > header .btn-group button.active {
|
|
color: #FFF;
|
|
background: #111;
|
|
}
|
|
|
|
/* Footer */
|
|
.ourproducts > footer a {
|
|
background: #f1f2f6;
|
|
}
|
|
|
|
/* Colour formatting */
|
|
.ourproducts .product-item:nth-child(1) h3:after,
|
|
.ourproducts .product-item:nth-child(1) footer a:hover {
|
|
background: #9b1f82;
|
|
color: #FFF;
|
|
}
|
|
.ourproducts .product-item:nth-child(1) footer a:hover {
|
|
border: 1px solid transparent;
|
|
}
|
|
.ourproducts .product-item:nth-child(1) footer a {
|
|
color: #9b1f82;
|
|
background: none;
|
|
border: 1px solid #9b1f82;
|
|
}
|
|
|
|
.ourproducts .product-item:nth-child(2) h3:after,
|
|
.ourproducts .product-item:nth-child(2) footer a:hover {
|
|
background: #0073bf;
|
|
color: #FFF;
|
|
}
|
|
.ourproducts .product-item:nth-child(2) footer a:hover {
|
|
border: 1px solid transparent;
|
|
}
|
|
.ourproducts .product-item:nth-child(2) footer a {
|
|
color: #0073bf;
|
|
background: none;
|
|
border: 1px solid #0073bf;
|
|
}
|
|
|
|
.ourproducts .product-item:nth-child(3) h3:after,
|
|
.ourproducts .product-item:nth-child(3) footer a:hover {
|
|
background: #00a0a3;
|
|
color: #FFF;
|
|
}
|
|
.ourproducts .product-item:nth-child(3) footer a:hover {
|
|
border: 1px solid transparent;
|
|
}
|
|
.ourproducts .product-item:nth-child(3) footer a {
|
|
color: #00a0a3;
|
|
background: none;
|
|
border: 1px solid #00a0a3;
|
|
}
|
|
|
|
/* =========== EXTRA INFOS SECTION =========== */
|
|
/* General */
|
|
.extra-infos {
|
|
background: #fbfbfb;
|
|
}
|
|
.extra-infos h2 {
|
|
padding-top: 4rem;
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Info list */
|
|
.extra-infos ul {
|
|
padding: 4rem 0;
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
.extra-infos li {
|
|
padding: 1.5rem 1rem;
|
|
font-size: 0.9em;
|
|
}
|
|
.extra-infos li:not(:last-child) {
|
|
border-right: solid 1px #E0E0E0;
|
|
}
|
|
.extra-infos li span {
|
|
font-size: 3.5em;
|
|
}
|
|
.extra-infos li p {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
/* =========== FREE TRIALS SECTION =========== */
|
|
/* General */
|
|
.freetrials {
|
|
padding-top: 5rem;
|
|
padding-bottom: 5rem;
|
|
background-image: linear-gradient(to bottom, #00a0a3 40%, #f1f2f6 40%);
|
|
}
|
|
|
|
/* Header */
|
|
.freetrials > header {
|
|
font-size: 1.5em;
|
|
color: #FFF;
|
|
text-align: center;
|
|
}
|
|
.freetrials > header b {
|
|
color: #77eef0;
|
|
}
|
|
|
|
/* Footer */
|
|
.freetrials > footer a {
|
|
background: #FFF;
|
|
}
|
|
|
|
/* Colour formatting */
|
|
.freetrials .product-item .title {
|
|
color: #FFF;
|
|
}
|
|
.freetrials .product-item h3:after,
|
|
.freetrials .product-item footer a:hover {
|
|
background: #00a0a3;
|
|
color: #FFF;
|
|
}
|
|
.freetrials .product-item footer a:hover {
|
|
border: 1px solid transparent;
|
|
}
|
|
.freetrials .product-item footer a {
|
|
color: #00a0a3;
|
|
background: none;
|
|
border: 1px solid #00a0a3;
|
|
}
|
|
|
|
/* =========== NEWSLETTER SECTION =========== */
|
|
/* General */
|
|
.newsletter {
|
|
padding-top: 4rem;
|
|
padding-bottom: 4rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.newsletter p {
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
/* Newsletter field */
|
|
.newsletter form {
|
|
display: flex;
|
|
min-width: 50%;
|
|
}
|
|
.newsletter form input {
|
|
padding: 15px 25px;
|
|
flex: 5;
|
|
font-size: 0.9em;
|
|
background: #f2f3f7;
|
|
border: none;
|
|
border-top-left-radius: 20px;
|
|
border-bottom-left-radius: 20px;
|
|
}
|
|
.newsletter form button {
|
|
padding: 15px 25px;
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
color: #FFF;
|
|
background: #ed0959;
|
|
border: none;
|
|
border-top-right-radius: 20px;
|
|
border-bottom-right-radius: 20px;
|
|
cursor: pointer;
|
|
}
|
|
.newsletter form button:hover {
|
|
background: #0073be;
|
|
}
|
|
|
|
/* =========== FOOTER SECTION =========== */
|
|
/* Top Footer - Contact Infos */
|
|
footer .contact-info {
|
|
width: 100%;
|
|
padding-top: 2rem;
|
|
padding-bottom: 2rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
text-align: center;
|
|
background: #000;
|
|
}
|
|
/* Top Footer - Phone number */
|
|
footer .contact-info .phone p {
|
|
font-size: 0.8em;
|
|
font-weight: 600;
|
|
color: #AAA;
|
|
}
|
|
footer .contact-info .phone address {
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
color: #FFF;
|
|
}
|
|
/* Top Footer - Social Links */
|
|
footer .contact-info .social-links {
|
|
display: flex;
|
|
color: #111;
|
|
}
|
|
footer .contact-info .social-links li {
|
|
margin: 0 10px;
|
|
}
|
|
footer .contact-info .social-links a {
|
|
display: block;
|
|
width: 30px;
|
|
height: 30px;
|
|
background: #FFF;
|
|
border-radius: 25px;
|
|
line-height: 30px;
|
|
}
|
|
/* Hover logo colours */
|
|
footer .contact-info .social-links li:nth-child(1) a:hover {
|
|
color: #FFF;
|
|
background: #3b5998;
|
|
}
|
|
footer .contact-info .social-links li:nth-child(2) a:hover {
|
|
color: #FFF;
|
|
background: #38A1F3;
|
|
}
|
|
footer .contact-info .social-links li:nth-child(3) a:hover {
|
|
color: #FFF;
|
|
background: #0077B5;
|
|
}
|
|
footer .contact-info .social-links li:nth-child(4) a:hover {
|
|
color: #FFF;
|
|
background: #c4302b;
|
|
}
|
|
|
|
/* Bottom Footer - Sitemap */
|
|
footer .sitemap {
|
|
padding-top: 4rem;
|
|
padding-bottom: 4rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background: #1a171b;
|
|
}
|
|
footer .sitemap h4 {
|
|
color: #FFF;
|
|
font-size: 0.9em;
|
|
font-weight: 600;
|
|
}
|
|
footer .sitemap h4:after {
|
|
content: "";
|
|
display: block;
|
|
width: 20px;
|
|
height: 3px;
|
|
margin: 10px 0;
|
|
background: #FFF;
|
|
}
|
|
footer .sitemap a {
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
color: #808080;
|
|
text-transform: uppercase;
|
|
}
|
|
footer .sitemap a:hover {
|
|
color: #FFF;
|
|
}
|
|
|
|
|
|
/* =========== COMPLEX LAYOUTS =========== */
|
|
/* === DISPLAYING PRODUCT LISTS (.ourproducts / .freetrials ) === */
|
|
/* List display */
|
|
.product-list {
|
|
padding: 3rem 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
/* Items display */
|
|
.product-item {
|
|
max-width: 300px;
|
|
min-width: 300px;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.product-item:nth-child(1) {
|
|
margin-right: 15px;
|
|
}
|
|
.product-item:nth-child(2) {
|
|
margin: 0 15px;
|
|
}
|
|
.product-item:nth-child(3) {
|
|
margin-left: 15px;
|
|
}
|
|
.product-item .title {
|
|
margin-bottom: 0.75rem;
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
color: #AAA;
|
|
}
|
|
.product-card {
|
|
padding: 1.5rem;
|
|
background: #fbfbfb;
|
|
border: solid 1px #dfdfdf;
|
|
border-bottom-left-radius: 25px;
|
|
}
|
|
.product-card header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.product-card header img {
|
|
max-height: 130px;
|
|
max-width: 130px;
|
|
margin-right: 1rem;
|
|
}
|
|
.product-card header .price {
|
|
padding-bottom: 2rem;
|
|
font-size: 0.9em;
|
|
font-weight: 600;
|
|
}
|
|
.product-card h3 {
|
|
font-weight: 600;
|
|
}
|
|
.product-card h3:after {
|
|
content: "";
|
|
display: block;
|
|
width: 30px;
|
|
height: 5px;
|
|
margin: 10px 0;
|
|
}
|
|
.product-card p {
|
|
margin-bottom: 1.5rem;
|
|
font-size: 0.9em;
|
|
}
|
|
.product-card footer a {
|
|
display: inline-block;
|
|
padding: 10px 14px;
|
|
font-size: 0.75em;
|
|
font-weight: 600;
|
|
color: #FFF;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* Sections' footer */
|
|
.ourproducts > footer,
|
|
.freetrials > footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.ourproducts > footer a,
|
|
.freetrials > footer a {
|
|
font-size: 0.9em;
|
|
padding: 10px 20px;
|
|
border-radius: 20px;
|
|
}
|
|
.ourproducts > footer a:hover,
|
|
.freetrials > footer a:hover {
|
|
color: #FFF;
|
|
background: #111;
|
|
}
|
|
|
|
/* =========== FONTS =========== */
|
|
/* icomoon icons */
|
|
@font-face {
|
|
font-family: 'icomoon';
|
|
src: url('fonts/icomoon.eot?nab70s');
|
|
src: url('fonts/icomoon.eot?nab70s#iefix') format('embedded-opentype'),
|
|
url('fonts/icomoon.ttf?nab70s') format('truetype'),
|
|
url('fonts/icomoon.woff?nab70s') format('woff'),
|
|
url('fonts/icomoon.svg?nab70s#icomoon') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
[class^="icon-"], [class*=" icon-"] {
|
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
font-family: 'icomoon' !important;
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
|
|
/* Better Font Rendering =========== */
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-home:before {
|
|
content: "\e900";
|
|
}
|
|
.icon-cart:before {
|
|
content: "\e93a";
|
|
}
|
|
.icon-credit-card:before {
|
|
content: "\e93f";
|
|
}
|
|
.icon-envelop:before {
|
|
content: "\e945";
|
|
}
|
|
.icon-bubbles:before {
|
|
content: "\e96c";
|
|
}
|
|
.icon-user:before {
|
|
content: "\e971";
|
|
}
|
|
.icon-lock:before {
|
|
content: "\e98f";
|
|
}
|
|
.icon-trophy:before {
|
|
content: "\e99e";
|
|
}
|
|
.icon-loop2:before {
|
|
content: "\ea2e";
|
|
}
|
|
.icon-circle-down:before {
|
|
content: "\ea43";
|
|
}
|
|
.icon-facebook:before {
|
|
content: "\ea90";
|
|
}
|
|
.icon-twitter:before {
|
|
content: "\ea96";
|
|
}
|
|
.icon-youtube:before {
|
|
content: "\ea9d";
|
|
}
|
|
.icon-linkedin2:before {
|
|
content: "\eaca";
|
|
}
|
|
|
|
|
|
|
|
|
|
/* =========== MEDIA QUERIES =========== */
|
|
|
|
/* LAPTOPS */
|
|
@media only screen
|
|
and (max-width : 1500px) {
|
|
/* Fixes the main padding */
|
|
body > *:not(footer),
|
|
.contact-info,
|
|
.sitemap {
|
|
padding-right: 10%;
|
|
padding-left: 10%;
|
|
}
|
|
/* Landing Section */
|
|
.landing .news-container article {
|
|
padding: 4rem 9rem 4rem 3rem;
|
|
}
|
|
.landing .news-container article:after {
|
|
top: 4rem;
|
|
}
|
|
}
|
|
|
|
/* SMALL LAPTOPS */
|
|
@media only screen
|
|
and (max-width : 1200px) {
|
|
/* Fixes the main padding */
|
|
body > *:not(footer),
|
|
.contact-info,
|
|
.sitemap {
|
|
padding-right: 5%;
|
|
padding-left: 5%;
|
|
}
|
|
/* Landing Article */
|
|
.landing .news-container article {
|
|
padding: 2.5rem 4rem 2.5rem 2rem;
|
|
}
|
|
.landing .news-container article:after {
|
|
top: 2.5rem;
|
|
}
|
|
.ourproducts > header {
|
|
display: block;
|
|
}
|
|
.ourproducts > header label {
|
|
margin-bottom: 1rem;
|
|
display: block;
|
|
font-size: 1.1em;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
/* TABLETS */
|
|
@media only screen
|
|
and (max-width : 1060px) {
|
|
/* Fixes the main padding */
|
|
body > *:not(footer),
|
|
.contact-info,
|
|
.sitemap {
|
|
padding-right: 2%;
|
|
padding-left: 2%;
|
|
}
|
|
.product-list {
|
|
justify-content: space-around;
|
|
}
|
|
.extra-infos li {
|
|
padding: 0.5rem;
|
|
}
|
|
}
|
|
|
|
/* PHONES */
|
|
@media only screen
|
|
and (max-width : 750px) {
|
|
/* Fixes the main padding */
|
|
body > *:not(footer),
|
|
.contact-info,
|
|
.sitemap {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
/* LANDING */
|
|
/* Hiding irrelevant things */
|
|
.landing .phone,
|
|
.landing nav .login-btn,
|
|
.landing .news-container form {
|
|
display: none;
|
|
}
|
|
.landing {
|
|
min-height: 100vh;
|
|
padding: 2.5rem;
|
|
}
|
|
.landing .news-container {
|
|
margin-top: 4rem;
|
|
}
|
|
.landing .news-container article {
|
|
padding: 3rem 4rem;
|
|
}
|
|
.landing .news-container article:after {
|
|
top: 0;
|
|
height: 100px;
|
|
width: 25px;
|
|
}
|
|
|
|
/* OUR PRODUCTS */
|
|
.ourproducts {
|
|
padding-top: 2rem;
|
|
padding-bottom: 2rem;
|
|
}
|
|
.ourproducts > header {
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
/* EXTRA INFOS */
|
|
/* Don't display this */
|
|
.extra-infos {
|
|
display: none;
|
|
}
|
|
|
|
/* FREE TRIALS */
|
|
.freetrials {
|
|
padding: 2rem;
|
|
background: #00a0a3;
|
|
}
|
|
.freetrials > header {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
/* PRODUCTS LIST */
|
|
.product-item:nth-child(1),
|
|
.product-item:nth-child(2),
|
|
.product-item:nth-child(3) {
|
|
margin: 0;
|
|
}
|
|
.product-list {
|
|
padding: 1rem 0;
|
|
}
|
|
.product-item {
|
|
min-width: 100%;
|
|
}
|
|
.product-item .title {
|
|
padding-left: 1.5rem;
|
|
font-size: 0.9em;
|
|
}
|
|
.product-card {
|
|
margin-bottom: 1.5rem;
|
|
padding: 1.5rem 12vw;
|
|
border: none;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
.freetrials .product-card {
|
|
border-top-right-radius: 50px;
|
|
border-bottom-left-radius: 50px;
|
|
}
|
|
.ourproducts > footer a,
|
|
.freetrials > footer a {
|
|
width: 60%;
|
|
text-align: center;
|
|
font-size: 0.8em;
|
|
padding: 8px 10px;
|
|
}
|
|
|
|
/* NEWSLETTER */
|
|
.newsletter {
|
|
padding: 2rem 1.5rem;
|
|
}
|
|
.newsletter form {
|
|
min-width: 60%;
|
|
}
|
|
|
|
/* FOOTER */
|
|
footer .contact-info {
|
|
display: block;
|
|
}
|
|
footer .phone {
|
|
display: none;
|
|
}
|
|
footer .contact-info .social-links {
|
|
margin-top: 0.75rem;
|
|
justify-content: center;
|
|
}
|
|
footer .sitemap {
|
|
padding: 2rem 1rem;
|
|
flex-flow: row wrap;
|
|
}
|
|
footer .sitemap > div {
|
|
width: 50%;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
/* SM PHONES */
|
|
@media only screen
|
|
and (max-width : 420px) {
|
|
.my-cart {
|
|
display: none;
|
|
}
|
|
.landing .news-container article {
|
|
padding: 2rem 2.5rem;
|
|
}
|
|
.ourproducts > footer a, .freetrials > footer a {
|
|
width: 90%;
|
|
}
|
|
.newsletter,
|
|
footer .sitemap {
|
|
padding: 2rem 0.5rem;
|
|
}
|
|
.newsletter form input,
|
|
.newsletter form button {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
|
|
@media only screen
|
|
and (max-width : 1069px)
|
|
and (min-width : 700px) {
|
|
/* Hides the third item to preserve space */
|
|
.product-item:nth-child(3) {
|
|
display: none;
|
|
}
|
|
} |