Advertisement
Guest User

Untitled

a guest
Jun 21st, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. .wrapper{
  2. background: url("../images/background.png") no-repeat center center fixed;
  3. background-size: cover;
  4. }
  5. .user-login-block{
  6. border-radius: 15px;
  7. background-color: #f2f2f2;
  8. box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 2);
  9. margin: 10% auto;
  10. width: 35%;
  11. height: 55%;
  12. padding: 10px;
  13. text-align: center;
  14. }
  15. form{
  16. margin: 0 auto;
  17. text-align: center;
  18. display: block;
  19. }
  20. .title-form{
  21. font: 18px Oswald;
  22. font-weight: 400;
  23. color: #4FC1E9;
  24. padding: 0 5px 5px;
  25. text-align: center;
  26. margin-bottom: 15px;
  27. }
  28. input{
  29. border-radius: 30px;
  30. border: 3px solid #f2f2f2;
  31. width: 60%;
  32. height: 35px;
  33. margin: 0 auto 10px;
  34. text-align: center;
  35. }
  36. #title:focus{
  37. font: 12px Lato;
  38. font-weight: 100;
  39. outline: none;
  40. border: 1px solid #3BAFDA;
  41. margin-top: 1px;
  42.  
  43. }
  44. #author:focus{
  45. font: 12px Lato;
  46. font-weight: 100;
  47. outline: none;
  48. border: 1px solid #3BAFDA;
  49. margin-top: 1px;
  50. }
  51. #username:focus {
  52. font: 12px Lato;
  53. font-weight: 100;
  54. outline: none;
  55. border: 1px solid #3BAFDA;
  56. margin-top: 4px;
  57. }
  58. #password:focus {
  59. font: 12px Lato;
  60. font-weight: 100;
  61. outline: none;
  62. border: 1px solid #3BAFDA;
  63. margin-top: 4px;
  64. }
  65. #re-enter-password:focus {
  66. font: 12px Lato;
  67. font-weight: 100;
  68. outline: none;
  69. border: 1px solid #3BAFDA;
  70. margin-top: 4px;
  71. }
  72. #full-name:focus {
  73. font: 12px Lato;
  74. font-weight: 100;
  75. outline: none;
  76. border: 1px solid #3BAFDA;
  77. margin-top: 4px;
  78. }
  79.  
  80. button{
  81. font: 16px Lato;
  82. color: white;
  83. background-color: #3BAFDA;
  84. padding: 8px;
  85. margin-top: 15px;
  86. margin-bottom: 10px;
  87. border: none;
  88. border-radius: 30px;
  89. width: 50%;
  90. }
  91. .form-link{
  92. text-decoration: none;
  93. color: #4FC1E9;
  94. font: 16px Lato;
  95. font-weight: 900;
  96. padding: 10px;
  97. }
  98. footer{
  99. width: 100%;
  100. position: absolute;
  101. bottom: 0;
  102. text-align: center;
  103. }
  104. #post-form{
  105. background: #f2f2f2;
  106. border-radius: 20px;
  107. margin: 10px;
  108. }
  109. .single-element-form{
  110. display: inline-block;
  111. width: 40%;
  112. padding-top: 10px;
  113. }
  114. .content-field{
  115. resize: none;
  116. border: 3px solid #f2f2f2;
  117. outline: none;
  118. width: 550px;
  119. height: 300px;
  120. border-radius: 15px;
  121. text-align: left;
  122. font: 12px Lato-Light;
  123. padding: 10px;
  124. }
  125. textarea:focus{
  126. font: 12px Lato;
  127. font-weight: 100;
  128. outline: none;
  129. border: 1px solid #3BAFDA;
  130. margin-top: 4px;
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement