Advertisement
Guest User

CSS

a guest
Jun 4th, 2017
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1.  
  2. /* -- Background image -- */
  3. body {
  4. background-image: url(assets/wood.png);
  5. background-repeat: no-repeat;
  6. background-size: cover;
  7. background-attachment: fixed;
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: center;
  11. align-items: center;
  12. height: 100vh;
  13. }
  14.  
  15. /* -- Center element -- */
  16. .center {
  17. max-width: 60%;
  18. max-height: 80%;
  19. width: 30%;
  20. height: 40%;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. align-items: center;
  25. background-color: rgba(255, 255, 255, 0.7);
  26. border-radius: 15%;
  27. box-shadow: 2px 2px 4px 3px #505050;
  28. position: absolute;
  29. z-index: 1;
  30. }
  31.  
  32. /* -- Logo style -- */
  33. #logo {
  34. position: relative;
  35. z-index: 2;
  36. max-width: 100%;
  37. height: auto;
  38. }
  39.  
  40. /* -- Form styles -- */
  41. form.login {
  42. max-width: 100%;
  43. height: auto;
  44. display: flex;
  45. flex-direction: column;
  46. justify-content: center;
  47. align-items: center;
  48. position: relative;
  49. z-index: 2;
  50. }
  51.  
  52. #password {
  53. display: flex;
  54. flex-direction: row;
  55. align-items: center;
  56. margin-bottom: 5%;
  57. }
  58.  
  59. /* -- Show password -- */
  60. #eye {
  61. height: auto;
  62. max-width: 15%;
  63. margin-right: 3%;
  64. }
  65.  
  66. /* -- Login element -- */
  67. form.login p {
  68. font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  69. font-size: 2vw;
  70. max-width: 100%;
  71. height: auto;
  72. line-height: 2%;
  73. }
  74.  
  75. form.login input[type=password] {
  76. max-width: 100%;
  77. width: 100%;
  78. height: auto;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement