styles.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. button {
  31. background-color: #a02d2a;
  32. color: #ffffff;
  33. border: none;
  34. padding: 7px 10px;
  35. text-align: center;
  36. text-decoration: none;
  37. font-size: 14px;
  38. }
  39. button:hover {
  40. box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  41. }
  42. /*******************************************************************************
  43. * *
  44. * Header *
  45. * *
  46. ******************************************************************************/
  47. /* Main div header container. */
  48. #header_container {
  49. background-color: black;
  50. padding: 5px;
  51. font-size: 0px;
  52. text-align: center;
  53. border-bottom: thick solid #a02d2a;
  54. border-bottom-width: 5px;
  55. position: relative;
  56. }
  57. /* Div container for the seal image. */
  58. #header_seal_container {
  59. position: absolute;
  60. }
  61. /* Div container for the header image. */
  62. #header_img_container {
  63. display: inline-block;
  64. margin: 0 auto;
  65. }
  66. /* Seal and header images. */
  67. #header_seal,
  68. #header_img {
  69. height: 75px;
  70. width: auto;
  71. display: block;
  72. }
  73. /* Div container for the social buttons. */
  74. #header_social_container {
  75. position: absolute;
  76. bottom: 0px;
  77. right: 0px;
  78. margin-bottom: 5px;
  79. }
  80. /* Social buttons. */
  81. .header_social_img {
  82. height: 25px;
  83. width: auto;
  84. display: inline-block;
  85. cursor: pointer;
  86. margin-right: 5px;
  87. }
  88. /*******************************************************************************
  89. * *
  90. * Toggle Buttons *
  91. * *
  92. ******************************************************************************/
  93. .toggle-btn {
  94. color: #000000;
  95. font-size: 15px;
  96. font-family: 'ringbearer';
  97. user-select: none;
  98. background-color: transparent;
  99. display: inline-flex;
  100. cursor: pointer;
  101. width: 90px;
  102. height: 35px;
  103. }
  104. .toggle-btn-grp .toggle-btn {
  105. border-radius: 0;
  106. align-items: center;
  107. justify-content: center;
  108. }
  109. .toggle-btn:not(.success):hover {
  110. box-shadow: inset 0 -4.5px 0 0 #000000;
  111. }
  112. .toggle-btn.success {
  113. background: #a02d2a;
  114. color: #ffffff;
  115. cursor: default;
  116. }
  117. .visuallyhidden {
  118. border: 0;
  119. clip: rect(0 0 0 0);
  120. height: 1px;
  121. margin: -1px;
  122. overflow: hidden;
  123. padding: 0;
  124. position: absolute;
  125. width: 1px;
  126. }
  127. .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  128. clip: auto;
  129. height: auto;
  130. margin: 0;
  131. overflow: visible;
  132. position: static;
  133. width: auto;
  134. }
  135. /*******************************************************************************
  136. * *
  137. * Left Body Container *
  138. * *
  139. ******************************************************************************/
  140. #left_pane {
  141. float: left;
  142. width: 30%;
  143. }
  144. #welcome_text {
  145. font-family: 'ringbearer';
  146. font-size: 16px;
  147. display: block;
  148. text-align: center;
  149. padding-top: 10px;
  150. }
  151. #login_container {
  152. display: inline-flex;
  153. width: 100%;
  154. }
  155. #login_image {
  156. height: 85px;
  157. width: auto;
  158. display: block;
  159. border: 3px solid #000000;
  160. }
  161. #login_container_right input,
  162. #login_container_right label {
  163. display: flex;
  164. width: 100%;
  165. }
  166. #login_container_left {
  167. padding: 10px 0 10px 10px;
  168. }
  169. #login_container_right {
  170. padding: 10px;
  171. width: 100%;
  172. }
  173. .login_field {
  174. font-size: 12px;
  175. font-family: 'Segoe UI';
  176. font-weight: 500;
  177. }
  178. #button_login {
  179. float: right;
  180. margin-right: 10px;
  181. }
  182. /*******************************************************************************
  183. * *
  184. * Right Body Container *
  185. * *
  186. ******************************************************************************/
  187. #right_pane {
  188. float: right;
  189. width: 70%;
  190. }
  191. #content_container {
  192. border: 3px solid #a02d2a;
  193. height: 98%;
  194. width: 98%;
  195. min-height: 325px;
  196. }