styles.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. * Toggle Buttons *
  79. * *
  80. ******************************************************************************/
  81. .toggle-btn {
  82. color: #000000;
  83. font-size: 15px;
  84. font-family: 'ringbearer';
  85. user-select: none;
  86. background-color: transparent;
  87. display: inline-flex;
  88. cursor: pointer;
  89. width: 90px;
  90. height: 35px;
  91. }
  92. .toggle-btn-grp .toggle-btn {
  93. border-radius: 0;
  94. align-items: center;
  95. justify-content: center;
  96. }
  97. .toggle-btn:not(.success):hover {
  98. box-shadow: inset 0 -4.5px 0 0 #000000;
  99. }
  100. .toggle-btn.success {
  101. background: #a02d2a;
  102. color: #ffffff;
  103. cursor: default;
  104. }
  105. .visuallyhidden {
  106. border: 0;
  107. clip: rect(0 0 0 0);
  108. height: 1px;
  109. margin: -1px;
  110. overflow: hidden;
  111. padding: 0;
  112. position: absolute;
  113. width: 1px;
  114. }
  115. .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  116. clip: auto;
  117. height: auto;
  118. margin: 0;
  119. overflow: visible;
  120. position: static;
  121. width: auto;
  122. }
  123. /*******************************************************************************
  124. * *
  125. * Left Body Container *
  126. * *
  127. ******************************************************************************/
  128. #left_pane {
  129. float: left;
  130. width: 30%;
  131. }
  132. /*******************************************************************************
  133. * *
  134. * Right Body Container *
  135. * *
  136. ******************************************************************************/
  137. #right_pane {
  138. float: right;
  139. width: 70%;
  140. }
  141. #content_container {
  142. border: 3px solid #a02d2a;
  143. height: 98%;
  144. width: 98%;
  145. min-height: 325px;
  146. }