| 1 |
<?php |
| 2 |
/** |
| 3 |
* LoginPress Login Footer Styles. |
| 4 |
* |
| 5 |
* This file contains the footer styling when default template is disabled by usage of hook. |
| 6 |
* Purpose of this file is to provide custom CSS styles for the login page footer. |
| 7 |
* |
| 8 |
* @package LoginPress |
| 9 |
* @since 1.6.4 |
| 10 |
* @version 6.2.0 |
| 11 |
*/ |
| 12 |
|
| 13 |
if ( ! defined( 'ABSPATH' ) ) { |
| 14 |
exit; |
| 15 |
} |
| 16 |
|
| 17 |
?> |
| 18 |
|
| 19 |
<style> |
| 20 |
.loginpress-show-love{color: #222;} |
| 21 |
.loginpress-show-love a{color: #2171b1;} |
| 22 |
.loginpress-show-love a:hover{color: #4d5d95;} |
| 23 |
.loginpress-show-love{float: right; font-style: italic; padding-right: 20px; padding-bottom: 10px; position: absolute; bottom: 3px; right: 0; z-index: 10;} |
| 24 |
.loginpress-show-love a{text-decoration: none;} |
| 25 |
.loginpress-caps-lock{display: none;} |
| 26 |
.loginpress-show-love{float: right; font-style: italic; padding-right: 20px; padding-bottom: 10px; position: absolute; bottom: 3px; right: 0; z-index: 10;} |
| 27 |
.loginpress-show-love a{ text-decoration: none; } |
| 28 |
.footer-wrapper{ position: -webkit-sticky; position: sticky; top: 100vh; width: 100%;} |
| 29 |
.footer-cont{ right: 0; bottom: 0; left: 0; text-align: center; vertical-align: bottom; } |
| 30 |
.login .copyRight{ background-color: #ffffff } |
| 31 |
.login .copyRight{ color: #3c434a } |
| 32 |
.copyRight{ padding: 12px 170px; } |
| 33 |
@media screen and (max-width: 767px) { |
| 34 |
.copyRight{ padding: 12px; } |
| 35 |
.loginpress-show-love{ display: none; } |
| 36 |
} |
| 37 |
</style> |
| 38 |
|