Site.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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: 75px;
  68. }
  69. #title
  70. {
  71. height: 75px;
  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. #ourOwnBabylonJSCanvas {
  89. width: 100%;
  90. height: 100%;
  91. }
  92. /* FORM LAYOUT ELEMENTS
  93. ----------------------------------------------------------*/
  94. fieldset {
  95. border: 1px solid #ddd;
  96. padding: 0 1.4em 1.4em 1.4em;
  97. margin: 0 0 1.5em 0;
  98. }
  99. legend {
  100. font-size: 1.2em;
  101. font-weight: bold;
  102. }
  103. textarea {
  104. min-height: 75px;
  105. }
  106. input[type="text"],
  107. input[type="password"] {
  108. border: 1px solid #ccc;
  109. padding: 2px;
  110. font-size: 1.2em;
  111. color: #444;
  112. width: 200px;
  113. }
  114. select {
  115. border: 1px solid #ccc;
  116. padding: 2px;
  117. font-size: 1.2em;
  118. color: #444;
  119. }
  120. input[type="submit"] {
  121. font-size: 1.2em;
  122. padding: 5px;
  123. }
  124. /* TABLE
  125. ----------------------------------------------------------*/
  126. table {
  127. border: solid 1px #e8eef4;
  128. border-collapse: collapse;
  129. }
  130. table td {
  131. padding: 5px;
  132. border: solid 1px #e8eef4;
  133. }
  134. table th {
  135. padding: 6px 5px;
  136. text-align: left;
  137. background-color: #e8eef4;
  138. border: solid 1px #e8eef4;
  139. }
  140. /* MISC
  141. ----------------------------------------------------------*/
  142. .clear {
  143. clear: both;
  144. }
  145. .error {
  146. color: Red;
  147. }
  148. div#title {
  149. display: block;
  150. text-align: left;
  151. }
  152. /* Styles for validation helpers
  153. -----------------------------------------------------------*/
  154. .field-validation-error {
  155. color: #ff0000;
  156. }
  157. .field-validation-valid {
  158. display: none;
  159. }
  160. .input-validation-error {
  161. border: 1px solid #ff0000;
  162. background-color: #ffeeee;
  163. }
  164. .validation-summary-errors {
  165. font-weight: bold;
  166. color: #ff0000;
  167. }
  168. .validation-summary-valid {
  169. display: none;
  170. }
  171. /* Styles for editor and display helpers
  172. ----------------------------------------------------------*/
  173. .display-label,
  174. .editor-label {
  175. margin: 1em 0 0 0;
  176. }
  177. .display-field,
  178. .editor-field {
  179. margin: 0.5em 0 0 0;
  180. }
  181. .text-box {
  182. width: 30em;
  183. }
  184. .text-box.multi-line {
  185. height: 6.5em;
  186. }
  187. .tri-state {
  188. width: 6em;
  189. }