Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. body, html {
  2. background-image: url("picture.png");
  3. background-attachment: fixed;
  4. background-position: center;
  5. background-repeat: no-repeat;
  6. background-size: cover;
  7. font-family: Arial, Helvetica, sans-serif;
  8. }
  9.  
  10. header > h1 {
  11. text-align: center;
  12. color: rgb(255, 51, 0);
  13. font-size:4em;
  14. height: 120px;
  15. }
  16.  
  17. header > h2 {
  18. text-align: center;
  19. color: rgb(114, 114, 114);
  20. font-size:4em;
  21. height: 220px;
  22. }
  23.  
  24. .intro{
  25. color: #fff;
  26. padding-left: 50px;
  27. padding-right: 60px;
  28. margin-bottom: 30px;
  29. text-align: center;
  30. }
  31.  
  32. .explanation > h3{
  33. float: left;
  34. padding-right: 30px;
  35. padding-left: 30px;
  36. padding-top: 30px;
  37. padding-bottom:10px;
  38. }
  39.  
  40. .explanation{
  41. margin-bottom: 40px;
  42. color: #fff;
  43. background-color: orangered;
  44. display: inline-block;
  45. font-size: 20px;
  46.  
  47. }
  48.  
  49. .summary {
  50. background-color: rgb(0, 0, 0);
  51. padding: 30px;
  52. }
  53.  
  54. .preamble{
  55. background-color: red;
  56. padding: 30px;
  57. }
  58.  
  59. .participation{
  60. margin-bottom: 40px;
  61. color: #fff;
  62. background-color: orangered;
  63. display: inline-block;
  64. font-size: 20px;
  65. }
  66.  
  67. .participation > h3{
  68. float: left;
  69. padding-right: 30px;
  70. padding-left: 30px;
  71. padding-top: 30px;
  72. padding-bottom:10px;
  73. }
  74.  
  75. .benefits{
  76. margin-bottom: 40px;
  77. color: #fff;
  78. background-color: orangered;
  79. display: inline-block;
  80. font-size: 20px;
  81. }
  82.  
  83. .benefits > h3{
  84. float: left;
  85. padding-right: 30px;
  86. padding-left: 30px;
  87. padding-top: 30px;
  88. padding-bottom:10px;
  89. }
  90.  
  91. .requirements{
  92. margin-bottom: 40px;
  93. color: #fff;
  94. background-color: orangered;
  95. display: inline-block;
  96. font-size: 20px;
  97. }
  98.  
  99. .requirements> h3{
  100. float: left;
  101. padding-right: 30px;
  102. padding-left: 30px;
  103. padding-top: 30px;
  104. padding-bottom:10px;
  105. }
  106.  
  107. footer {
  108. text-align: center;
  109. font-size: 1.5em;
  110. letter-spacing: 10px;
  111. padding: 50px;
  112. background-color: black;
  113. }
  114.  
  115. footer > p:hover{
  116. padding:20px;
  117. background-color: red;
  118. font-weight: old;
  119. color: black;
  120. }
  121.  
  122. .sidebar{
  123. background-image: url("walking dead.jpg");
  124. background-attachment: fixed;
  125. background-position: center;
  126. background-repeat: no-repeat;
  127. background-size: cover;
  128. padding: 20px;
  129. }
  130.  
  131. li{
  132. list-style:none;
  133. padding:10px;
  134. font-family: 'Courier New', Courier, monospace;
  135. font-weight: bolder;
  136. color: black;
  137. }
  138. .wrapper{
  139. font-size: 15px;
  140. border-radius: 20px;
  141. padding:8px;
  142. text-align: center;
  143. }
  144.  
  145. .resources, .archives, .select{
  146. list-style:none;
  147. padding:10px;
  148. font-size:20px;
  149. font-family: 'Courier New', Courier, monospace;
  150. font-weight: bolder;
  151. color: grey;
  152. background-color:black;
  153. margin-right:400px;
  154. margin-left:400px;
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement