RELEASE 1.1

Made buttons more consistent and more appealing.
Added a minified CSS file.
Added favicons.
This commit is contained in:
AlexisNP
2019-08-22 18:04:35 +02:00
committed by GitHub
parent d25da14eb0
commit 3dbd4a1385
4 changed files with 37 additions and 19 deletions

1
css/style-min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -143,12 +143,10 @@ sup {
border-radius: 25px; border-radius: 25px;
border: none; border: none;
cursor: pointer; cursor: pointer;
transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1), background 0.2s cubic-bezier(0.77, 0, 0.175, 1);
} }
.landing nav .login-btn:hover { .landing nav .login-btn:hover {
color: #FFF; color: #FFF;
background: #111; background: #111;
transition: color 0.2s cubic-bezier(0.77, 0, 0.175, 1), background 0.2s cubic-bezier(0.77, 0, 0.175, 1);
} }
/* == MENU FORMATTING == */ /* == MENU FORMATTING == */
@@ -174,7 +172,6 @@ sup {
color: #FFF; color: #FFF;
background: #000; background: #000;
} }
/* Transformation effects */ /* Transformation effects */
.landing nav .menu:not(.active) .menu-item a{ .landing nav .menu:not(.active) .menu-item a{
transform: scale(0); transform: scale(0);
@@ -207,8 +204,6 @@ sup {
background: #000; background: #000;
border-radius: 50%; border-radius: 50%;
} }
/* Colour formatting */ /* Colour formatting */
.landing nav .menu.active .menu-body .menu-item:nth-child(1) a:hover {background: #00a0a3} .landing nav .menu.active .menu-body .menu-item:nth-child(1) a:hover {background: #00a0a3}
.landing nav .menu.active .menu-body .menu-item:nth-child(2) a:hover {background: #9b1f82} .landing nav .menu.active .menu-body .menu-item:nth-child(2) a:hover {background: #9b1f82}
@@ -221,7 +216,9 @@ sup {
display: flex; display: flex;
background: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.95);
border-bottom-left-radius: 25px; border-bottom-left-radius: 25px;
box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.2) -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 */ /* News section */
@@ -282,9 +279,16 @@ sup {
padding: 10px 14px; padding: 10px 14px;
color: #555; color: #555;
background: #FFF; background: #FFF;
border: solid 1px rgba(0, 0, 0, 0.1); border: solid 1px rgba(0, 0, 0, 0.2);
border-radius: 16px; 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 { .landing .news-container form .select-wrapper {
position: relative; position: relative;
} }
@@ -303,9 +307,6 @@ sup {
color: #555; color: #555;
z-index: 100; z-index: 100;
} }
.landing .news-container form select[disabled] {
color: red !important;
}
.landing .news-container form select svg { .landing .news-container form select svg {
position: absolute; position: absolute;
} }
@@ -320,6 +321,9 @@ sup {
border-radius: 16px; border-radius: 16px;
cursor: pointer; cursor: pointer;
} }
.landing .news-container form button:hover {
background: #0073be;
}
/* =========== OUR PRODUCTS SECTION =========== */ /* =========== OUR PRODUCTS SECTION =========== */
/* General */ /* General */
@@ -520,14 +524,14 @@ sup {
font-size: 0.75em; font-size: 0.75em;
font-weight: 600; font-weight: 600;
color: #FFF; color: #FFF;
background: #00a0a3; background: #ed0959;
border: none; border: none;
border-top-right-radius: 20px; border-top-right-radius: 20px;
border-bottom-right-radius: 20px; border-bottom-right-radius: 20px;
cursor: pointer; cursor: pointer;
} }
.newsletter form button:hover { .newsletter form button:hover {
background: #32a44d; background: #0073be;
} }
/* =========== FOOTER SECTION =========== */ /* =========== FOOTER SECTION =========== */
@@ -569,10 +573,23 @@ footer .contact-info .social-links a {
border-radius: 25px; border-radius: 25px;
line-height: 30px; line-height: 30px;
} }
footer .contact-info .social-links a:hover svg.fa-facebook-f {color: #3b5998} /* Hover logo colours */
footer .contact-info .social-links a:hover svg.fa-twitter {color: #38A1F3} footer .contact-info .social-links li:nth-child(1) a:hover {
footer .contact-info .social-links a:hover svg.fa-linkedin-in {color: #0077B5} color: #FFF;
footer .contact-info .social-links a:hover svg.fa-youtube {color: #c4302b} 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 */ /* Bottom Footer - Sitemap */
footer .sitemap { footer .sitemap {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

@@ -9,9 +9,9 @@
<meta name="keywords" content="éditions législatives, juridique, conventions collectives, solutions rh, rh, ressources humaines, ordonnances, macron, représentant personnel, comptables, immobilier"> <meta name="keywords" content="éditions législatives, juridique, conventions collectives, solutions rh, rh, ressources humaines, ordonnances, macron, représentant personnel, comptables, immobilier">
<meta name="description" content="Éditions Législatives - L'actualité juridique, convention collective à l'unité, droit social… nous avons des produits et services analysés mis à jour en permanence."> <meta name="description" content="Éditions Législatives - L'actualité juridique, convention collective à l'unité, droit social… nous avons des produits et services analysés mis à jour en permanence.">
<!-- Favicon --> <!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="#"> <link rel="icon" type="image/png" sizes="32x32" href="img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="#"> <link rel="icon" type="image/png" sizes="96x96" href="img/icons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="#"> <link rel="icon" type="image/png" sizes="16x16" href="img/icons/favicon-16x16.png">
<!-- Fonts --> <!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i&display=swap" rel="stylesheet">
<!-- Stylesheets --> <!-- Stylesheets -->