Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. /* HEADER */
  2. .header{
  3. width: 100%;
  4. height: 80px;
  5. display: block;
  6. background-color:white;
  7. /* position: absolute; */
  8. }
  9.  
  10. .header1{
  11. background-color: #8B8970;
  12. }
  13.  
  14. .fa {
  15. padding: 5px;
  16. font-size: 20px;
  17. width: 0px;
  18. text-align: center;
  19. text-decoration: none;
  20. margin: 2px -56px;
  21. height: 30px;
  22. }
  23.  
  24. .fa-facebook , .fa-twitter ,.fa-instagram {
  25. color: white;
  26. margin-left: 5%;
  27. }
  28.  
  29. .inner_header{
  30. width: 68%;
  31. height: 100%;
  32. display: block;
  33. margin: 0 auto;
  34. /* background-color: red; */
  35. }
  36.  
  37. .logo_container{
  38. height: 100%;
  39. display: table;
  40. float: left;
  41. }
  42.  
  43. .logo_container h1{
  44. color: #770000;
  45. height: 100%;
  46. display: table-cell;
  47. vertical-align: middle;
  48. font-family: 'Dancing Script';
  49. font-size: 50px;
  50. font-weight: 200px;
  51. }
  52.  
  53. .logo_container h1 span{
  54. font-weight: bold;
  55. }
  56.  
  57. .navigation{
  58. float: right;
  59. height: 100%;
  60. }
  61.  
  62. .navigation a{
  63. height: 100%;
  64. display: table;
  65. float: left;
  66. padding: 0px 20px;
  67. }
  68.  
  69. .navigation a :last-child{
  70. padding-right: 0;
  71. }
  72.  
  73. .navigation a li{
  74. display: table-cell;
  75. vertical-align: middle;
  76. height: 100%;
  77. color:#770000;
  78. font-family: 'Montserrat';
  79. font-size: 16px;
  80. }
  81. #header11 {
  82. width: 100%;
  83. }
  84.  
  85. /* HET HEADER */
  86.  
  87. /* FOOTER */
  88. .footer{
  89. margin-top: 40px;
  90. width: 100%;
  91. display: block;
  92. padding: 20px 0;
  93. box-sizing: border-box;
  94. background-color: #8B8970;
  95. height: fit-content;
  96. }
  97.  
  98. .inner_footer{
  99. display: flex;
  100. justify-content: space-around;
  101. margin: 0 auto;
  102. width: 1100px;
  103. height: 100%;
  104. font-family: "Montserrat";
  105. font-size: 15px;
  106. color: white;
  107. }
  108.  
  109. .inner_footer .footer_third a {
  110. display: block;
  111. margin-top: 5px;
  112. color: white;
  113. }
  114.  
  115. /* HET FOOTER */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement