1
0

login_addcss.php 907 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <style>
  2. .forgetmenot input:checked + label {
  3. background: <?php echo iro_opt('theme_skin'); ?>;
  4. }
  5. #labelTip {
  6. background-color: <?php echo iro_opt('theme_skin'); ?>;
  7. }
  8. #label {
  9. color: <?php echo iro_opt('theme_skin'); ?>;
  10. }
  11. #login .submit .button {
  12. background: <?php echo iro_opt('theme_skin'); ?>;
  13. }
  14. <?php if (iro_opt('captcha_select') != 'off'): ?>
  15. #login {
  16. font:14px/1.4 "Helvetica Neue","HelveticaNeue",Helvetica,Arial,sans-serif;
  17. position:absolute;
  18. background: rgba(255, 255, 255, 0.40);
  19. border-radius: 12px;
  20. top:40%;
  21. left:50%;
  22. width:350px;
  23. padding:0px !important;
  24. margin:-235px 0px 0px -175px !important;
  25. background-position: center 48%;
  26. }
  27. <?php endif; ?>
  28. <?php if (iro_opt('login_blur', 'true')): ?>
  29. body::before{
  30. -webkit-backdrop-filter: blur(2px);
  31. backdrop-filter: blur(2px);
  32. content:"";
  33. width:100vw;
  34. height:100vh;
  35. display: block;
  36. }
  37. <?php endif; ?>
  38. </style>