PluginProbe
LoginPress | wp-login Custom Login Page Customizer / trunk
LoginPress | wp-login Custom Login Page Customizer vtrunk
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.3 1.0.4 All 118 releases
loginpress / include / login-footer.php

login-footer.php in LoginPress | wp-login Custom Login Page Customizer trunk, at include/login-footer.php

38 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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