Guest User

Untitled

a guest
Mar 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. html,body {
  2. font-family:Montserrat, sans-serif;
  3. margin:0;
  4. padding:0;
  5. }
  6.  
  7. h1 {
  8. border-left:2px solid #00f28f;
  9. font-size:48px;
  10. font-weight:400;
  11. padding-left:20px;
  12. margin:0;
  13. }
  14.  
  15. .header {
  16. margin:80px 0 100px;
  17. }
  18.  
  19. .header p {
  20. color:#a9a9a9;
  21. }
  22.  
  23. .container {
  24. margin-right:auto;
  25. margin-left:auto;
  26. padding-left:15px;
  27. padding-right:15px;
  28. }
  29.  
  30. form {
  31. margin:0 0 100px;
  32. }
  33.  
  34. form input[type=text] {
  35. background:#f0f0f0;
  36. border:none;
  37. border-left:2px solid #fff;
  38. font-size:36px;
  39. font-family:Montserrat, sans-serif;
  40. transition:background 2s border-left 2s;
  41. padding:20px;
  42. }
  43.  
  44. form input[type=text]:focus {
  45. background:#fff;
  46. border-left:2px solid #000;
  47. box-shadow:none;
  48. outline:none;
  49. transition:background 2s border-left 2s;
  50. }
  51.  
  52. button.btn,.btn {
  53. background:transparent;
  54. border:none;
  55. color:#00f28f;
  56. cursor:pointer;
  57. font-size:36px;
  58. transition:background 2s color 1s;
  59. padding:20px 24px;
  60. }
  61.  
  62. button.btn:hover,.btn:hover {
  63. background:#00f28f;
  64. color:#fff;
  65. transition:background 2s color 1s;
  66. }
  67.  
  68. ul {
  69. list-style:none;
  70. margin:0;
  71. padding:0;
  72. }
  73.  
  74. li {
  75. border-left:2px solid #000;
  76. font-size:36px;
  77. opacity:0;
  78. padding-left:20px;
  79. margin:0 0 36px;
  80. }
  81.  
  82. li:nth-child(1) {
  83. opacity:1;
  84. }
  85.  
  86. li:nth-child(2) {
  87. opacity:0.9;
  88. }
  89.  
  90. li:nth-child(3) {
  91. opacity:0.8;
  92. }
  93.  
  94. li:nth-child(4) {
  95. opacity:0.7;
  96. }
  97.  
  98. li:nth-child(5) {
  99. opacity:0.6;
  100. }
  101.  
  102. li:nth-child(6) {
  103. opacity:0.5;
  104. }
  105.  
  106. li:nth-child(7) {
  107. opacity:0.4;
  108. }
  109.  
  110. li:nth-child(8) {
  111. opacity:0.3;
  112. }
  113.  
  114. li:nth-child(9) {
  115. opacity:0.2;
  116. }
  117.  
  118. li:nth-child(10) {
  119. opacity:0.1;
  120. }
  121.  
  122. li:nth-child(11) {
  123. opacity:0;
  124. }
  125.  
  126. @media (min-width:768px) {
  127. .container {
  128. width:750px;
  129. }
  130.  
  131. form input[type=text] {
  132. width:400px;
  133. }
  134. }
  135.  
  136. @media (min-width: 992px) {
  137. .container {
  138. width:970px;
  139. }
  140.  
  141. form input[type=text] {
  142. width:600px;
  143. }
  144. }
  145.  
  146. @media (min-width:1200px) {
  147. .container {
  148. width:1170px;
  149. }
  150. }
Add Comment
Please, Sign In to add comment