Guest User

Untitled

a guest
Jul 14th, 2017
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.15 KB | None | 0 0
  1. /* CSS Document */
  2. /* ---------- FONTAWESOME ---------- */
  3. /* ---------- http://fortawesome.github.com/Font-Awesome/ ---------- */
  4. /* ---------- http://weloveiconfonts.com/ ---------- */
  5. @import url(http://weloveiconfonts.com/api/?family=fontawesome);
  6. /* ---------- ERIC MEYER'S RESET CSS ---------- */
  7. /* ---------- http://meyerweb.com/eric/tools/css/reset/ ---------- */
  8. @import url(http://meyerweb.com/eric/tools/css/reset/reset.css);
  9. /* ---------- FONTAWESOME ---------- */
  10. [class*="fontawesome-"]:before {
  11.   font-family: 'FontAwesome', sans-serif;
  12. }
  13.  
  14. /* ---------- GENERAL ---------- */
  15. * {
  16.   -moz-box-sizing: border-box;
  17.        box-sizing: border-box;
  18. }
  19. *:before, *:after {
  20.   -moz-box-sizing: border-box;
  21.        box-sizing: border-box;
  22. }
  23.  
  24. body {
  25.   background: #2c3338;
  26.   color: #606468;
  27.   font: 87.5%/1.5em 'Open Sans', sans-serif;
  28.   margin: 0;
  29. }
  30.  
  31. a {
  32.   color: #eee;
  33.   text-decoration: none;
  34. }
  35.  
  36. a:hover {
  37.   text-decoration: underline;
  38. }
  39.  
  40. input {
  41.   border: none;
  42.   font-family: 'Open Sans', Arial, sans-serif;
  43.   font-size: 14px;
  44.   line-height: 1.5em;
  45.   padding: 0;
  46.   -webkit-appearance: none;
  47. }
  48.  
  49. p {
  50.   line-height: 1.5em;
  51. }
  52.  
  53. .clearfix {
  54.   *zoom: 1;
  55. }
  56. .clearfix:before, .clearfix:after {
  57.   content: ' ';
  58.   display: table;
  59. }
  60. .clearfix:after {
  61.   clear: both;
  62. }
  63.  
  64. .container {
  65.   left: 50%;
  66.   position: fixed;
  67.   top: 50%;
  68.   -webkit-transform: translate(-50%, -50%);
  69.       -ms-transform: translate(-50%, -50%);
  70.           transform: translate(-50%, -50%);
  71. }
  72.  
  73. /* ---------- LOGIN ---------- */
  74. #login {
  75.   width: 560px;
  76. }
  77.  
  78. #login form span {
  79.   background-color: #363b41;
  80.   border-radius: 3px 0px 0px 3px;
  81.   color: #606468;
  82.   display: block;
  83.   float: left;
  84.   height: 50px;
  85.   line-height: 50px;
  86.   text-align: center;
  87.   width: 50px;
  88. }
  89.  
  90. #login form input {
  91.   height: 50px;
  92. }
  93.  
  94. #login form input[type="text"], input[type="password"], input[type="email"] {
  95.   background-color: #3b4148;
  96.   border-radius: 0px 3px 3px 0px;
  97.   color: #606468;
  98.   margin-bottom: 1em;
  99.   padding: 0 16px;
  100.   width: 560px;
  101. }
  102.  
  103. #login form input[name="staerken"]{
  104.   background-color: #3b4148;
  105.   border-radius: 0px 3px 3px 0px;
  106.   color: #606468;
  107.   margin-bottom: 3em;
  108.   padding: 0 16px;
  109.   width: 560px;
  110. }
  111.  
  112. #login form input[name="date"]{
  113.   background-color: #3b4148;
  114.   border-radius: 0px 3px 3px 0px;
  115.   color: #606468;
  116.   margin-bottom: 2em;
  117.   padding: 0 16px;
  118.   width: 560px;
  119. }
  120.  
  121. #login form input[name="number"]{
  122.   background-color: #3b4148;
  123.   border-radius: 0px 3px 3px 0px;
  124.   color: #606468;
  125.   margin-bottom: 2em;
  126.   padding: 0 16px;
  127.   width: 560px;
  128. }
  129.  
  130. #login form input[error="true"]{
  131.   background-color: #FF8888;
  132.   border-radius: 0px 3px 3px 0px;
  133.   color: #606468;
  134.   padding: 0 16px;
  135.   width: 560px;
  136. }
  137.  
  138. #login form input[type="submit"] {
  139.   border-radius: 3px;
  140.   -moz-border-radius: 3px;
  141.   -webkit-border-radius: 3px;
  142.   background-color: #34AAD1;
  143.   color: #eee;
  144.   font-weight: bold;
  145.   margin-bottom: 2em;
  146.   text-transform: uppercase;
  147.   width: 560px;
  148. }
  149.  
  150. #login form input[type="submit"]:hover {
  151.   background-color: #1498C4;
  152. }
  153.  
  154. #login > p {
  155.   text-align: center;
  156. }
  157.  
  158. #login > p span {
  159.   padding-left: 5px;
  160. }
Add Comment
Please, Sign In to add comment