lockScreen.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @charset "UTF-8";
  2. /*!
  3. * Kendo UI Admin v1.0.0 by IKKI & Amikoko - https://ikki2000.github.io/
  4. * Copyright 2018-2019 IKKI Studio
  5. * Released under the MIT License - https://ikki2000.gitee.io/kendoui-admin-site/LICENSE
  6. */
  7. /* CSS for All Admin Pages | Written by Amikoko | 2018-02-03 */
  8. #locking {
  9. display: -ms-flexbox;
  10. display: flex;
  11. -ms-flex-direction: column;
  12. flex-direction: column;
  13. -ms-flex-pack: center;
  14. justify-content: center;
  15. -ms-flex-align: center;
  16. align-items: center;
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. right: 50%;
  21. bottom: 50%;
  22. z-index: 10000;
  23. width: 0;
  24. height: 0;
  25. text-align: center;
  26. color: #fff;
  27. background:url(../img/lockScreen_background.jpg) no-repeat center;
  28. background-size: 100% 100%;
  29. transition: all .2s linear;
  30. }
  31. #locking figure {
  32. position: relative;
  33. margin-bottom: 0;
  34. }
  35. #locking figure:hover:after {
  36. display: -ms-flexbox;
  37. display: flex;
  38. -ms-flex-pack: center;
  39. justify-content: center;
  40. -ms-flex-align: center;
  41. align-items: center;
  42. position: absolute;
  43. top: 0;
  44. left: 0;
  45. border-radius: 50%;
  46. width: 100%;
  47. height: 100%;
  48. font-family:"Font Awesome";
  49. font-size: 48px;
  50. background: rgba(0, 0, 0, 0.5);
  51. content:"\f13e";
  52. cursor: pointer;
  53. }
  54. #locking img {
  55. border-radius: 50%;
  56. width: 0;
  57. height: 0;
  58. background: #fff;
  59. box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.6);
  60. opacity: 0;
  61. transition: all .6s linear;
  62. }
  63. #locking h3 {
  64. margin: 20px 0 30px 0;
  65. font-size: 0;
  66. opacity: 0;
  67. transition: all .6s linear;
  68. }
  69. #locking.lock-ani {
  70. top: 0;
  71. left: 0;
  72. right: 0;
  73. bottom: 0;
  74. width: 100%;
  75. height: 100%;
  76. }
  77. #locking.lock-ani img {
  78. width: 128px;
  79. height: 128px;
  80. opacity: 1;
  81. }
  82. #locking.lock-ani h3 {
  83. font-size: 30px;
  84. opacity: 1;
  85. }
  86. #locking .input-group {
  87. width: 300px;
  88. opacity: 0;
  89. transition: opacity .6s;
  90. }
  91. #locking .input-group.lock-input-ani {
  92. opacity: 1;
  93. }
  94. #locking .form-control {
  95. font-size: 14px;
  96. }
  97. #locking .form-control:focus {
  98. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
  99. }
  100. #locking .input-group-append {
  101. cursor: pointer;
  102. }
  103. #locking i {
  104. font-size: 16px;
  105. }
  106. /*.lock-ani {*/
  107. /* top: 0;*/
  108. /* left: 0;*/
  109. /* right: 0;*/
  110. /* bottom: 0;*/
  111. /* width: 100%;*/
  112. /* height: 100%;*/
  113. /* img {*/
  114. /* width: 128px;*/
  115. /* height: 128px;*/
  116. /* opacity: 1;*/
  117. /* }*/
  118. /* h3 {*/
  119. /* font-size: 30px;*/
  120. /* opacity: 1;*/
  121. /* }*/
  122. /*}*/