Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. body {
  2. background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("bg.jpg");
  3. text-align: center;
  4. font-family: 'Josefin Sans', sans-serif;
  5. margin: 0px;
  6. }
  7.  
  8. .title {
  9. color: white;
  10. font-weight: normal;
  11. font-size: 30px;
  12. margin-top: 210px;
  13. width: 100%;
  14. padding: 35px 0px;
  15. background-color: rgba(0,0,0, 0.7);
  16. }
  17.  
  18. .title > .first {
  19. font-weight: bold;
  20. color: #ff3333;
  21. }
  22.  
  23. hr {
  24. display: block;
  25. height: 1px;
  26. border: 0;
  27. border-top: 3px solid #ff3333;
  28. margin: 0;
  29. padding: 0;
  30. }
  31.  
  32. .title > .second {
  33. font-weight: bold;
  34. font-size: 20px;
  35. color: #ff3333;
  36. }
  37.  
  38. .buttons {
  39. list-style-type: none;
  40. padding: 0;
  41. }
  42.  
  43. .buttons > li {
  44. text-align: center;
  45. margin: 40px 15px;
  46. }
  47.  
  48. .btn {
  49. padding: 10px 20px;
  50. border-radius: 25px;
  51. text-decoration: none;
  52. background-color: #ff3333;
  53. border: 1px solid #ff3333;
  54. font-size: 20px;
  55. color: white;
  56. }
  57.  
  58. .btn:hover {
  59. border-radius: 25px;
  60. background-color: transparent;
  61. border: 1px solid white;
  62. color: white;
  63. }
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75. @media only screen and (min-width: 600px) {
  76. .title {
  77. color: white;
  78. font-weight: normal;
  79. font-size: 40px;
  80. margin-top: 65px;
  81. width: 100%;
  82. padding: 35px 0px;
  83. background-color: rgba(0,0,0, 0.7);
  84. }
  85.  
  86. .title > .first {
  87. font-weight: bold;
  88. color: #ff3333;
  89. }
  90.  
  91. hr {
  92. display: block;
  93. height: 1px;
  94. border: 0;
  95. border-top: 3px solid #ff3333;
  96. margin: 0;
  97. padding: 0;
  98. }
  99.  
  100. .title > .second {
  101. font-weight: bold;
  102. font-size: 25px;
  103. color: #ff3333;
  104. }
  105.  
  106. .buttons {
  107. list-style-type: none;
  108. padding: 0;
  109. }
  110.  
  111. .buttons > li {
  112. display: inline-block;
  113. text-align: center;
  114. margin: 15px 15px;
  115. }
  116.  
  117. .btn {
  118. padding: 10px 20px;
  119. border-radius: 25px;
  120. text-decoration: none;
  121. background-color: #ff3333;
  122. border: 1px solid #ff3333;
  123. font-size: 20px;
  124. color: white;
  125. }
  126.  
  127. .btn:hover {
  128. border-radius: 25px;
  129. background-color: transparent;
  130. border: 1px solid white;
  131. color: white;
  132. }
  133. }
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145. @media only screen and (min-width: 768px) {
  146. .title {
  147. color: white;
  148. font-weight: normal;
  149. font-size: 70px;
  150. margin-top: 210px;
  151. width: 100%;
  152. padding: 35px 0px;
  153. background-color: rgba(0,0,0, 0.7);
  154. }
  155.  
  156. .title > .first {
  157. font-weight: bold;
  158. color: #ff3333;
  159. }
  160.  
  161. hr {
  162. display: block;
  163. height: 1px;
  164. border: 0;
  165. border-top: 3px solid #ff3333;
  166. margin: 0;
  167. padding: 0;
  168. }
  169.  
  170. .title > .second {
  171. font-weight: bold;
  172. font-size: 40px;
  173. color: #ff3333;
  174. }
  175.  
  176. .buttons {
  177. list-style-type: none;
  178. padding: 0;
  179. }
  180.  
  181. .buttons > li {
  182. display: inline-block;
  183. text-align: center;
  184. margin: 0px 15px;
  185. }
  186.  
  187. .btn {
  188. padding: 10px 35px;
  189. border-radius: 25px;
  190. text-decoration: none;
  191. background-color: #ff3333;
  192. border: 2px solid #ff3333;
  193. font-size: 20px;
  194. color: white;
  195. }
  196.  
  197. .btn:hover {
  198. border-radius: 25px;
  199. background-color: transparent;
  200. border: 2px solid white;
  201. color: white;
  202. }
  203. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement