header.css 830 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #header_container {
  2. background-color: black;
  3. padding: 5px;
  4. font-size: 0px;
  5. text-align: center;
  6. border-bottom: thick solid #a02d2a;
  7. border-bottom-width: 5px;
  8. position: relative;
  9. }
  10. /* Div container for the seal image. */
  11. #header_seal_container {
  12. position: absolute;
  13. }
  14. /* Div container for the header image. */
  15. #header_img_container {
  16. display: inline-block;
  17. margin: 0 auto;
  18. }
  19. /* Seal and header images. */
  20. #header_seal,
  21. #header_img {
  22. height: 75px;
  23. width: auto;
  24. display: block;
  25. }
  26. /* Div container for the social buttons. */
  27. #header_social_container {
  28. position: absolute;
  29. bottom: 0px;
  30. right: 0px;
  31. margin-bottom: 5px;
  32. }
  33. /* Social buttons. */
  34. .header_social_img {
  35. height: 25px;
  36. width: auto;
  37. display: inline-block;
  38. cursor: pointer;
  39. margin-right: 5px;
  40. }