Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. @import url("https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css");
  2. @import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
  3.  
  4. .isa_info, .isa_success, .isa_warning, .isa_error {
  5. margin: 10px 0px;
  6. padding:12px;
  7.  
  8. }
  9. .isa_info {
  10. color: #00529B;
  11. background-color: #BDE5F8;
  12. }
  13. .isa_success {
  14. color: #4F8A10;
  15. background-color: #DFF2BF;
  16. }
  17. .isa_warning {
  18. color: #9F6000;
  19. background-color: #FEEFB3;
  20. }
  21. .isa_error {
  22. color: #D8000C;
  23. background-color: #FFD2D2;
  24. }
  25. .isa_info i, .isa_success i, .isa_warning i, .isa_error i {
  26. margin:10px 22px;
  27. font-size:2em;
  28. vertical-align:middle;
  29. }
  30.  
  31. body {font-family: Arial, Helvetica, sans-serif;}
  32. * {box-sizing: border-box}
  33.  
  34. /* Full-width input fields */
  35. input[type=text], input[type=password] {
  36. width: 100%;
  37. padding: 15px;
  38. margin: 5px 0 22px 0;
  39. display: inline-block;
  40. border: none;
  41. background: #f1f1f1;
  42. }
  43.  
  44. input[type=text]:focus, input[type=password]:focus {
  45. background-color: #ddd;
  46. outline: none;
  47. }
  48.  
  49. hr {
  50. border: 1px solid #f1f1f1;
  51. margin-bottom: 25px;
  52. }
  53.  
  54. /* Set a style for all buttons */
  55. button {
  56. background-color: #4CAF50;
  57. color: white;
  58. padding: 14px 20px;
  59. margin: 8px 0;
  60. border: none;
  61. cursor: pointer;
  62. width: 100%;
  63. opacity: 0.9;
  64. }
  65.  
  66. button:hover {
  67. opacity:1;
  68. }
  69.  
  70. /* Extra styles for the cancel button */
  71. .cancelbtn {
  72. padding: 14px 20px;
  73. background-color: #f44336;
  74. }
  75.  
  76. /* Float cancel and signup buttons and add an equal width */
  77. .cancelbtn, .signupbtn {
  78. float: left;
  79. width: 50%;
  80. }
  81.  
  82. /* Add padding to container elements */
  83. .container {
  84. padding: 16px;
  85. }
  86.  
  87. /* Clear floats */
  88. .clearfix::after {
  89. content: "";
  90. clear: both;
  91. display: table;
  92. }
  93.  
  94. /* Change styles for cancel button and signup button on extra small screens */
  95. @media screen and (max-width: 300px) {
  96. .cancelbtn, .signupbtn {
  97. width: 100%;
  98. }
  99. }
  100.  
  101. body {font-family: Arial, Helvetica, sans-serif;}
  102. form {border: 3px solid #f1f1f1;}
  103.  
  104. input[type=text], input[type=password] {
  105. width: 100%;
  106. padding: 12px 20px;
  107. margin: 8px 0;
  108. display: inline-block;
  109. border: 1px solid #ccc;
  110. box-sizing: border-box;
  111. }
  112.  
  113. button {
  114. background-color: #4CAF50;
  115. color: white;
  116. padding: 14px 20px;
  117. margin: 8px 0;
  118. border: none;
  119. cursor: pointer;
  120. width: 100%;
  121. }
  122.  
  123. button:hover {
  124. opacity: 0.8;
  125. }
  126.  
  127. .cancelbtn {
  128. width: auto;
  129. padding: 10px 18px;
  130. background-color: #f44336;
  131. }
  132.  
  133. .imgcontainer {
  134. text-align: center;
  135. margin: 24px 0 12px 0;
  136. }
  137.  
  138. img.avatar {
  139. width: 40%;
  140. border-radius: 50%;
  141. }
  142.  
  143. .container {
  144. padding: 16px;
  145. }
  146.  
  147. span.psw {
  148. float: right;
  149. }
  150.  
  151. /* Change styles for span and cancel button on extra small screens */
  152. @media screen and (max-width: 300px) {
  153. span.psw {
  154. display: block;
  155. float: none;
  156. }
  157. .cancelbtn {
  158. width: 100%;
  159. }
  160. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement