Advertisement
martinnaj

Untitled

Oct 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. .header {
  2. padding: 60px;
  3. text-align: center;
  4. background: #fff;
  5. color: black;
  6. font-size: 30px;
  7. }
  8. #navigation-buttons:hover {
  9. background-color: #12a2b7;
  10. }
  11. body {
  12. margin: 0;
  13. background: #222;
  14. font-family: 'Work Sans', sans-serif;
  15. font-weight: 800;
  16. }
  17. .container {
  18. width: 80%;
  19. margin: 0 auto;
  20. }
  21. .container2 {
  22. background: fff;
  23. width: 80%;
  24. margin: 0 auto;
  25. }
  26. header {
  27. background: #000;
  28. }
  29.  
  30. footer {
  31. background: #000;
  32. }
  33. header::after {
  34. content: '';
  35. display: table;
  36. clear: both;
  37. }
  38. header2::after {
  39. content: '';
  40. display: table;
  41. clear: both;
  42. }
  43.  
  44. footer::after {
  45. content: '';
  46. display: table;
  47. clear: both;
  48. }
  49. .logo {
  50. float: left;
  51. padding: 10px 0;
  52. }
  53. nav {
  54. float: right;
  55. }
  56. nav ul {
  57. margin: 0;
  58. padding: 0;
  59. list-style: none;
  60. }
  61. nav li {
  62. display: inline-block;
  63. margin-left: 70px;
  64. padding-top: 23px;
  65.  
  66. position: relative;
  67. }
  68. nav a {
  69. color: #999;
  70. text-decoration: none;
  71. text-transform: uppercase;
  72. font-size: 14px;
  73. }
  74. nav a:hover {
  75. color: #fff;
  76. }
  77. nav a::before {
  78. content: '';
  79. display: block;
  80. height: 5px;
  81. background-color: #fff;
  82.  
  83. position: absolute;
  84. top: 0;
  85. width: 0%;
  86.  
  87. transition: all ease-in-out 250ms;
  88. }
  89. nav a:hover::before {
  90. width: 100%;
  91. }
  92.  
  93. #dropbtn {
  94. padding-top: 23px;
  95. }
  96.  
  97. #dropdown {
  98. position: relative;
  99. display: inline-block;
  100. }
  101.  
  102. #dropdown-content {
  103. display: none;
  104. position: absolute;
  105. background-color: #f1f1f1;
  106. min-width: 150px;
  107. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  108. z-index: 1;
  109. }
  110.  
  111. #dropdown-content a {
  112. color: black;
  113. padding: 12px 16px;
  114. text-decoration: none;
  115. display: block;
  116. cursor: pointer;
  117. }
  118.  
  119. #para {
  120. cursor: pointer;
  121. padding: 5px 16px;
  122. color: #0;
  123. text-decoration: none;
  124. text-transform: uppercase;
  125. font-size: 14px;
  126. }
  127.  
  128. #para2 {
  129. cursor: pointer;
  130. padding: 5px 16px;
  131. color: #0;
  132. text-decoration: none;
  133. text-transform: uppercase;
  134. font-size: 14px;
  135. }
  136.  
  137. #para3 {
  138. cursor: pointer;
  139. padding: 5px 16px;
  140. color: #0;
  141. text-decoration: none;
  142. text-transform: uppercase;
  143. font-size: 14px;
  144. }
  145.  
  146. #para4 {
  147. cursor: pointer;
  148. padding: 5px 16px;
  149. color: #0;
  150. text-decoration: none;
  151. text-transform: uppercase;
  152. font-size: 14px;
  153. }
  154.  
  155. #dropdown:hover #dropdown-content {display: block;}
  156.  
  157. /* Stolen CSS AKA FOOTER */
  158.  
  159. section#footer{
  160. float: left;
  161. width: 62%;
  162. padding-top: 20px;
  163. padding-left: 24%;
  164. padding-right: 14%;
  165. background-color:#333333;
  166. font-size: 14px;
  167. color: silver;
  168. }
  169.  
  170. .sboxfooter {
  171. display: inline-block;
  172. margin-left: 3%; margin-bottom: 1%; margin-top: 0.5%;
  173. width: 280px;
  174. max-width: 290px;
  175. height:auto ;
  176. background-color: #333333;
  177. border-spacing: 0px;
  178. color: silver;
  179. text-align: center;
  180. }
  181.  
  182. /* End of Stolen CSS AKA FOOTER */
  183.  
  184. .common-Button {
  185. position:absolute;
  186. cursor: pointer;
  187. opacity:1;
  188. white-space:nowrap;
  189. font-family: 'Oswald', sans-serif;
  190. display:inline-block;
  191. line-height:75px;
  192. padding:0 14px;
  193. -webkit-box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
  194. box-shadow:0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
  195. background:#fff;
  196. border-radius:4px;
  197. height: 75px;
  198. width: 200px;
  199. font-size:30px;
  200. text-transform:uppercase;
  201. letter-spacing:.025em;
  202. color:#6772e5;
  203. text-decoration:none;
  204. -webkit-transition:all .15s ease;
  205. transition:all .15s ease;
  206. text-align: center;
  207. -webkit-user-select: none; /* Safari */
  208. -moz-user-select: none; /* Firefox */
  209. -ms-user-select: none; /* IE10+/Edge */
  210. user-select: none; /* Standard */
  211. }
  212.  
  213. .common-Button:focus {
  214. outline:none;-webkit-box-shadow:0 0 0 1.5px hsla(0,0%,100%,.75),0 0 0 1.25px rgba(82,95,127,.5) inset,0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025);box-shadow:0 0 0 1.5px hsla(0,0%,100%,.75),inset 0 0 0 1.25px rgba(82,95,127,.5),0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025)
  215. }
  216. .common-Button:hover {
  217. color:#7795f8;-webkit-transform:translateY(-1px);
  218. transform:translateY(-1px);
  219. -webkit-box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025);
  220. box-shadow:0 13px 27px -5px rgba(50,50,93,.25),0 8px 16px -8px rgba(0,0,0,.3),0 -6px 16px -6px rgba(0,0,0,.025);
  221. -webkit-box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08);
  222. box-shadow:0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08)
  223. }
  224. .common-Button:active {
  225. color:#555abf;background-color:#f6f9fc;
  226. -webkit-transform:translateY(1px);
  227. transform:translateY(1px);
  228. -webkit-box-shadow:0 6px 12px -2px rgba(50,50,93,.25),0 3px 7px -3px rgba(0,0,0,.3);
  229. box-shadow:0 6px 12px -2px rgba(50,50,93,.25),0 3px 7px -3px rgba(0,0,0,.3)
  230. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement