Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. .header {
  2. width:100%;
  3. height: 100%;
  4. }
  5.  
  6. .logo{
  7. width: 71px;
  8. height: 35px;
  9. position: fixed;
  10. left: 70px;
  11. }
  12.  
  13. .line{
  14. position: fixed;
  15. left: 158px;
  16. top: 45px;
  17. }
  18.  
  19. .labs{
  20. position: fixed;
  21. left: 178px;
  22. color: #b99458;
  23. font-size: 22pt;
  24. font-family: 'simplon_bp_boldbold';
  25. font-weight: lighter;
  26. }
  27.  
  28. .languages-header{
  29. float: left;
  30. padding-right: 20px;
  31. color: #b99458;
  32. font-size: 14pt;
  33. font-family: 'simplon_bp_boldbold';
  34. }
  35.  
  36. .check{
  37. float: right;
  38. position: fixed;
  39. right: 71px;
  40. top: 46px;
  41. }
  42.  
  43.  
  44. .check tag{
  45. padding: 9px;
  46. font-size: 14pt;
  47. color: #a5a29f;
  48. font-family: proxima-nova, sans-serif;
  49. font-style: normal;
  50. font-weight: 400;
  51. }
  52.  
  53. .checkbox > input[type="checkbox"] {
  54. display: none;
  55. }
  56.  
  57. .checkbox > input[type="checkbox"] + label {
  58. background-color: #fff;
  59. border: 2px solid #dadada;
  60. border-radius: 3px;
  61. cursor: pointer;
  62. display: inline-block;
  63. height: 17px;
  64. transition: background-color .4s ease;
  65. width: 17px;
  66. }
  67.  
  68. .checkbox > input[type="checkbox"]:checked + label {
  69. background-color: #00bbff;
  70. line-height: 17px;
  71. text-align: center;
  72. }
  73.  
  74. .checkbox > input[type="checkbox"] + label:before {
  75. color: #fff;
  76. content: "\2713";
  77. display: inline-block;
  78. font-size: 14px;
  79. opacity: 0;
  80. transform: scale(5);
  81. transition: all .3s ease;
  82. visibility: hidden;
  83. }
  84.  
  85. .checkbox > input[type="checkbox"]:checked + label:before {
  86. opacity: 1;
  87. transform: scale(1);
  88. visibility: visible;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement