Site.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*----------------------------------------------------------
  2. The base color for this template is #5c87b2. If you'd like
  3. to use a different color start by replacing all instances of
  4. #5c87b2 with your new color.
  5. ----------------------------------------------------------*/
  6. body {
  7. background-color: #000;
  8. font-size: .85em;
  9. font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
  10. margin: 0;
  11. padding: 0;
  12. color: #696969;
  13. }
  14. a:link {
  15. color: #034af3;
  16. text-decoration: underline;
  17. }
  18. a:visited {
  19. color: #505abc;
  20. }
  21. a:hover {
  22. color: #1d60ff;
  23. text-decoration: none;
  24. }
  25. a:active {
  26. color: #12eb87;
  27. }
  28. p, ul {
  29. margin-bottom: 20px;
  30. line-height: 1.6em;
  31. }
  32. /* HEADINGS
  33. ----------------------------------------------------------*/
  34. h1, h2, h3, h4, h5, h6 {
  35. font-size: 1.5em;
  36. color: #000;
  37. }
  38. h1 {
  39. font-size: 2em;
  40. padding-bottom: 0;
  41. margin-bottom: 0;
  42. }
  43. h2 {
  44. padding: 0 0 10px 0;
  45. }
  46. h3 {
  47. font-size: 1.2em;
  48. }
  49. h4 {
  50. font-size: 1.1em;
  51. }
  52. h5, h6 {
  53. font-size: 1em;
  54. }
  55. /* PRIMARY LAYOUT ELEMENTS
  56. ----------------------------------------------------------*/
  57. /* you can specify a greater or lesser percentage for the
  58. page width. Or, you can specify an exact pixel width. */
  59. #main
  60. {
  61. overflow: hidden;
  62. position: absolute;
  63. top: 0;
  64. right: 0;
  65. bottom: 0;
  66. left: 0;
  67. padding-top: 100px;
  68. }
  69. #title
  70. {
  71. height: 100px;
  72. position: absolute;
  73. top: 0;
  74. left: 0;
  75. right: 0;
  76. }
  77. #title h1 {
  78. font-weight: bold;
  79. padding: 5px 0;
  80. padding-left: 15px;
  81. margin: 0;
  82. color: #fff;
  83. border: none;
  84. line-height: 2em;
  85. font-size: 32px !important;
  86. text-shadow: 1px 1px 2px #111;
  87. }
  88. #title #menu
  89. {
  90. text-align: center;
  91. color: white;
  92. }
  93. #title #menu a
  94. {
  95. color: white;
  96. }
  97. #ourOwnBabylonJSCanvas {
  98. width: 100%;
  99. height: 100%;
  100. }
  101. #logo
  102. {
  103. background-color: White;
  104. text-align: center;
  105. padding: 20px;
  106. /* FORM LAYOUT ELEMENTS
  107. ----------------------------------------------------------*/
  108. fieldset {
  109. border: 1px solid #ddd;
  110. padding: 0 1.4em 1.4em 1.4em;
  111. margin: 0 0 1.5em 0;
  112. }
  113. legend {
  114. font-size: 1.2em;
  115. font-weight: bold;
  116. }
  117. textarea {
  118. min-height: 75px;
  119. }
  120. input[type="text"],
  121. input[type="password"] {
  122. border: 1px solid #ccc;
  123. padding: 2px;
  124. font-size: 1.2em;
  125. color: #444;
  126. width: 200px;
  127. }
  128. select {
  129. border: 1px solid #ccc;
  130. padding: 2px;
  131. font-size: 1.2em;
  132. color: #444;
  133. }
  134. input[type="submit"] {
  135. font-size: 1.2em;
  136. padding: 5px;
  137. }
  138. /* TABLE
  139. ----------------------------------------------------------*/
  140. table {
  141. border: solid 1px #e8eef4;
  142. border-collapse: collapse;
  143. }
  144. table td {
  145. padding: 5px;
  146. border: solid 1px #e8eef4;
  147. }
  148. table th {
  149. padding: 6px 5px;
  150. text-align: left;
  151. background-color: #e8eef4;
  152. border: solid 1px #e8eef4;
  153. }
  154. /* MISC
  155. ----------------------------------------------------------*/
  156. .clear {
  157. clear: both;
  158. }
  159. .error {
  160. color: Red;
  161. }
  162. div#title {
  163. display: block;
  164. text-align: left;
  165. }
  166. /* Styles for validation helpers
  167. -----------------------------------------------------------*/
  168. .field-validation-error {
  169. color: #ff0000;
  170. }
  171. .field-validation-valid {
  172. display: none;
  173. }
  174. .input-validation-error {
  175. border: 1px solid #ff0000;
  176. background-color: #ffeeee;
  177. }
  178. .validation-summary-errors {
  179. font-weight: bold;
  180. color: #ff0000;
  181. }
  182. .validation-summary-valid {
  183. display: none;
  184. }
  185. /* Styles for editor and display helpers
  186. ----------------------------------------------------------*/
  187. .display-label,
  188. .editor-label {
  189. margin: 1em 0 0 0;
  190. }
  191. .display-field,
  192. .editor-field {
  193. margin: 0.5em 0 0 0;
  194. }
  195. .text-box {
  196. width: 30em;
  197. }
  198. .text-box.multi-line {
  199. height: 6.5em;
  200. }
  201. .tri-state {
  202. width: 6em;
  203. }