Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. login-page-background {
  2. margin: 0;
  3. padding: 0;
  4. background: #fff;
  5. color: #fff;
  6. font-family: Arial;
  7. font-size: 12px;
  8. }
  9.  
  10. .login-page-background {
  11. position: absolute;
  12. top: -20px;
  13. left: -20px;
  14. right: -40px;
  15. bottom: -40px;
  16. width: auto;
  17. height: auto;
  18. background-image: url("../../Content/photos/multicolored-folders-1966.jpg");
  19. background-size: cover;
  20. -webkit-filter: blur(5px);
  21. z-index: 0;
  22. }
  23.  
  24. .grad {
  25. position: absolute;
  26. top: -20px;
  27. left: -20px;
  28. right: -40px;
  29. bottom: -40px;
  30. width: auto;
  31. height: auto;
  32. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
  33. z-index: 1;
  34. opacity: 0.7;
  35. }
  36.  
  37. .login-site-name {
  38. position: absolute;
  39. top: calc(50% - 35px);
  40. left: calc(50% - 255px);
  41. z-index: 2;
  42. }
  43.  
  44. .login {
  45. position: absolute;
  46. top: calc(50% - 75px);
  47. height: 150px;
  48. width: 350px;
  49. padding: 10px;
  50. z-index: 2;
  51. }
  52.  
  53. .animate-right {
  54. animation: animateright 0.4s;
  55. }
  56.  
  57. @keyframes animateright {
  58. from {
  59. right: -300px;
  60. opacity: 0
  61. }
  62.  
  63. to {
  64. right: 100px;
  65. opacity: 1;
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement