Advertisement
Guest User

KURWA CSCS

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. $color1: rgb(232,221,203);
  2. $color2: rgb(205,179,128);
  3. $color3: rgb(3,101,100);
  4. $color4: rgb(3,54,73);
  5. $color5: rgb(3,22,52);
  6. $color6: rgb(83,119,122);
  7.  
  8. $alpha0: 1;
  9. $alpha1: 0.9;
  10. $alpha2: 0.8;
  11. $alpha3: 0.7;
  12. $alpha4: 0.6;
  13. $alpha5: 0.5;
  14. $alpha6: 0.4;
  15. $alpha7: 0.3;
  16. $alpha8: 0.2;
  17. $alpha9: 0.1;
  18. $alpha10: 0;
  19.  
  20. @font-face {
  21. font-family: 'Caviar Dreams';
  22. src: asset-url('fonts/CaviarDreams.ttf') format('truetype');
  23. font-weight: normal;
  24. font-style: normal;
  25. }
  26. .mdl-snackbar__text
  27. {
  28. color: #000 !important;
  29.  
  30. }
  31.  
  32. .mdl-snackbar
  33. {
  34. text-align: center !important;
  35. }
  36.  
  37. .event-success
  38. {
  39. background-color: #007700 !important;
  40.  
  41. }
  42.  
  43. .event-danger
  44. {
  45. background-color: #991100 !important;
  46.  
  47. }
  48.  
  49. .event-notice
  50. {
  51. background-color: #cc7700 !important;
  52. }
  53.  
  54. .event
  55. {
  56. width: 100% !important;
  57. font-size: 15px;
  58. margin-left: 0;
  59. border:0;
  60. }
  61.  
  62. @media (max-width: 1880px) {
  63. .mdl-snackbar {
  64. width: 100%;
  65. left: 0;
  66. min-height: 48px;
  67. max-height: 110px;
  68. }
  69. }
  70.  
  71.  
  72. body
  73. {
  74. background: linear-gradient(135deg, #033649 0%,#031634 100%);
  75. background-attachment: fixed;
  76. font-family: "Caviar Dreams", sans serif;
  77. font-size: 20px;
  78. color: $color1;
  79. letter-spacing: 3px;
  80. }
  81.  
  82. .main {
  83. width: 100%;
  84. margin-left: auto;
  85. margin-right: auto;
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. .login {
  90. width: 30%;
  91. box-sizing: border-box;
  92. float: left;
  93. background-color: rgba($color6, $alpha7);
  94. /*Umiejscowienie bloku z przyciskiem margin-top 25% bez Snoopa*/
  95. margin-top: 22.5%;
  96. -moz-border-radius: 4px;
  97. -webkit-border-radius: 4px;
  98. border-radius: 4px;
  99. }
  100. }
  101.  
  102. /* Formularze do logowania */
  103. input[type=email], input[type=password]
  104. {
  105. font-family: "Caviar Dreams", sans serif;
  106. text-align: center;
  107. color: $color5;
  108. width: 95%;
  109. height: 40px;
  110. font-size: 17px;
  111. margin-left: 2.5%;
  112. margin-right: 2.5%;
  113. border: 0;
  114. }
  115.  
  116. input[type=email]
  117. {
  118. margin-top: 2.5%;
  119. -moz-border-radius: 2px 2px 0px 0px;
  120. -webkit-border-radius: 2px 2px 0px 0px;
  121. border-radius: 2px 2px 0px 0px;
  122. }
  123.  
  124. input[type=password]
  125. {
  126. margin-top: .5%;
  127. }
  128.  
  129. input[type=submit]
  130. {
  131. width: 95%;
  132. margin-top: 1.5%;
  133. margin-bottom: 2.5%;
  134. margin-left: 2.5%;
  135. margin-right: 2.5%;
  136.  
  137. -moz-border-radius: 0px 0px 2px 2px;
  138. -webkit-border-radius: 0px 0px 2px 2px;
  139. border-radius: 0px 0px 2px 2px;
  140. border:0;
  141. }
  142.  
  143. input[type=submit], input[type=email_field], input[type=password_field]
  144. {
  145. float: left;
  146. cursor: pointer;
  147. box-sizing: border-box;
  148. text-align: center;
  149. height: 50px;
  150.  
  151. font-family: "Caviar Dreams", sans serif;
  152. background: linear-gradient(135deg, #a2b0c8 0%,#265190 100%);
  153. color: $color1;
  154. text-decoration: none;
  155. font-weight: bold;
  156. font-size: 19px;
  157. }
  158.  
  159. input[type=submit]:active
  160. {
  161. background-color: rgba($color2, $alpha2);
  162. color: $color1;
  163. position: relative;
  164. top: 1px;
  165. -moz-border-radius: 2px;
  166. -webkit-border-radius: 2px;
  167. border-radius: 2px;
  168. border:0;
  169. }
  170.  
  171. @media only screen and (max-width: 600px)
  172. {
  173. .login
  174. {
  175. width: 100%;
  176. margin-left: 0;
  177. }
  178. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement