Advertisement
Matiquel

Untitled

Oct 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.10 KB | None | 0 0
  1. body
  2. {
  3.   margin: 0 auto;
  4.   padding: 0;
  5.   position: relative;
  6.   text-align: center;
  7. }
  8. .container
  9. {
  10.   text-align: center;
  11.   margin: 25px auto;
  12.   width: 900px;
  13.   position: relative;
  14. }
  15. .container2
  16. {
  17.   text-align: center;
  18.   display: inline-block;
  19. }
  20. /*label
  21. {
  22.   display: flex;
  23.   align-items: center;
  24.   position: relative;
  25. }
  26. input
  27. {
  28.   width: 0;
  29.   height: 0;
  30. }
  31. label > span
  32. {
  33.   width: 20px;
  34.   height: 20px;
  35.   display: flex;
  36.   justify-content: center;
  37.   border: 2px solid #9e9e9e;
  38.   margin-right: 15px;
  39.   border-radius: 3px;
  40.   transition: all 0.3s;
  41. }
  42. input:checked + label > span
  43. {
  44.     border: 10px solid #006cff;
  45. }
  46. input:checked + label > span:before
  47. {
  48.   content: "";
  49.   position: absolute;
  50.   top: 8px;
  51.   left: 4px;
  52.   border-right: 3px solid transparent;
  53.   border-bottom: 3px solid transparent;
  54.   transform: rotate(45deg);
  55.   transform-origin: 0% 100%;
  56.   animation: checked-box 125ms 250ms forwards;
  57. }*/
  58.  
  59. /*@keyframes checked-box{
  60.   0%{
  61.     width: 0;
  62.     height: 0;
  63.     border-color: #fff;
  64.     transform:: translate(0,0) rotate(45deg);
  65.   }
  66.   33%{
  67.     width: 4px;
  68.     height: 0;
  69.     border-color: #fff1;
  70.     transform:: translate(0,0) rotate(45deg);
  71.   }
  72.   100%{
  73.     width: 8px;
  74.     height: 4px;
  75.     border-color: #fff;
  76.     transform:: translate(0,-8px) rotate(45deg);
  77.   }
  78. }*/
  79.  
  80. #content
  81. {
  82.   position: relative;
  83.   width: 280px;
  84.   height: 480px;
  85.   margin: 0 auto;
  86.   padding: 25px 0 0;
  87.   background-color: #f9f9f9;
  88.   text-align: center;
  89.   box-shadow: 0 1px 0 #fff inset;
  90.   padding: 25px 0 0;
  91.   /*border: 1px solid #c4c6ca;*/
  92. }
  93. #content h1
  94. {
  95.   font-family: sans-serif,Arial;
  96.   font-size: 25px;
  97.   color: black;
  98.   font-weight: bold;
  99.   letter-spacing: -0.05em;
  100. }
  101. .wrapper
  102. {
  103.   width: 100%;
  104.   height: 45px;
  105.   margin: 0 auto;
  106.   margin-top: 25px;
  107.   margin-bottom: 20px;
  108.   border: 1px solid gainsboro;
  109.   border-radius: 5px;
  110. }
  111. .wrapper input
  112. {
  113.   width: 200px;
  114.   height: 45px;
  115.   background: transparent;
  116.   border:0px;
  117.   outline: none;
  118.   font-size: 16px;
  119.   font-family: sans-serif,Arial;
  120. }
  121. .wrapper .fa
  122. {
  123.     font-size: 20px;
  124.     color: #333;
  125.     margin-left: -35px;
  126. }
  127. a
  128. {
  129.   text-decoration: none;
  130.   font-family: sans-serif,Arial;
  131.   letter-spacing: -0.05em;
  132.   font-size: 14px;
  133.   color: #333;
  134.   margin-left: 80px;
  135. }
  136. .witam
  137. {
  138.   border: 1px solid #c4c6ca;
  139. }
  140. .buttone
  141. {
  142.   margin-bottom: 15px;
  143.   width: 100%;
  144.   border: none;
  145.   border-radius: 3px;
  146.   clear: both;
  147.   cursor: pointer;
  148.   font-weight: 500;
  149.   text-align: center;
  150.   vertical-align: middle;
  151.   white-space: nowrap;
  152.   user-select: none;
  153.   font-size: 18px;
  154.   font-family: sans-serif,Arial;
  155.   height: 42px;
  156.   line-height: 42px;
  157.   padding: 0 20px;
  158.   background: #006cff;
  159.   color: #fff;
  160. }
  161. .buttones
  162. {
  163.   width: 100%;
  164.   border: none;
  165.   border-radius: 3px;
  166.   clear: both;
  167.   cursor: pointer;
  168.   font-weight: 500;
  169.   text-align: center;
  170.   vertical-align: middle;
  171.   white-space: nowrap;
  172.   user-select: none;
  173.   font-size: 18px;
  174.   font-family: sans-serif,Arial;
  175.   height: 42px;
  176.   line-height: 42px;
  177.   padding: 0 20px;
  178.   background: #fff;
  179.   color: #006cff;
  180.   border: 1px solid #006cff;
  181. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement