styles.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*******************************************************************************
  2. * *
  3. * Fonts *
  4. * *
  5. ******************************************************************************/
  6. /* Primary font for the application, found on http://www.dafont.com/ringbearer.font */
  7. @font-face {
  8. font-family: ringbearer;
  9. src: url('../fonts/ringbearer.ttf');
  10. }
  11. /* Logger font, found on https://fonts.google.com/specimen/Inconsolata?selection.family=Inconsolata */
  12. @font-face {
  13. font-family: inconsolata;
  14. src: url('../fonts/Inconsolata-Bold.ttf');
  15. }
  16. /*******************************************************************************
  17. * *
  18. * Body *
  19. * *
  20. ******************************************************************************/
  21. /* Reset body, html, and div presets. */
  22. body, html, div {
  23. margin: 0px;
  24. padding: 0px;
  25. }
  26. html {
  27. background: url('../images/BrownWithWignette.jpg') no-repeat center center fixed;
  28. background-size: cover;
  29. }
  30. /*******************************************************************************
  31. * *
  32. * Header *
  33. * *
  34. ******************************************************************************/
  35. /* Main div header container. */
  36. #header_container {
  37. background-color: black;
  38. padding: 5px;
  39. font-size: 0px;
  40. text-align: center;
  41. border-bottom: thick solid #a02d2a;
  42. border-bottom-width: 5px;
  43. position: relative;
  44. }
  45. /* Div container for the seal image. */
  46. #header_seal_container {
  47. position: absolute;
  48. }
  49. /* Div container for the header image. */
  50. #header_img_container {
  51. display: inline-block;
  52. margin: 0 auto;
  53. }
  54. /* Seal and header images. */
  55. #header_seal,
  56. #header_img {
  57. height: 75px;
  58. width: auto;
  59. display: block;
  60. }
  61. /* Div container for the social buttons. */
  62. #header_social_container {
  63. position: absolute;
  64. bottom: 0px;
  65. right: 0px;
  66. margin-bottom: 5px;
  67. }
  68. /* Social buttons. */
  69. .header_social_img {
  70. height: 25px;
  71. width: auto;
  72. display: inline-block;
  73. cursor: pointer;
  74. margin-right: 5px;
  75. }
  76. /*******************************************************************************
  77. * *
  78. * Left Body Container *
  79. * *
  80. ******************************************************************************/
  81. #body_left_container {
  82. width: 25%;
  83. display: inline-block;
  84. }
  85. /*******************************************************************************
  86. * *
  87. * Right Body Container *
  88. * *
  89. ******************************************************************************/
  90. #body_right_container {
  91. width: 75%;
  92. display: inline-block;
  93. }
  94. .mtoggle_button {
  95. text-align:centre;
  96. margin:5px 2px;
  97. padding:0.4em 3em;
  98. color:#000;
  99. background-color:#FFF;
  100. border-radius:10px;
  101. display:inline-block;
  102. border:solid 1px #CCC;
  103. cursor:pointer;
  104. }