123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- /*----------------------------------------------------------
- The base color for this template is #5c87b2. If you'd like
- to use a different color start by replacing all instances of
- #5c87b2 with your new color.
- ----------------------------------------------------------*/
- body {
- background-color: #000;
- font-size: .85em;
- font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
- margin: 0;
- padding: 0;
- color: #696969;
- }
- a:link {
- color: #034af3;
- text-decoration: underline;
- }
- a:visited {
- color: #505abc;
- }
- a:hover {
- color: #1d60ff;
- text-decoration: none;
- }
- a:active {
- color: #12eb87;
- }
- p, ul {
- margin-bottom: 20px;
- line-height: 1.6em;
- }
- /* HEADINGS
- ----------------------------------------------------------*/
- h1, h2, h3, h4, h5, h6 {
- font-size: 1.5em;
- color: #000;
- }
- h1 {
- font-size: 2em;
- padding-bottom: 0;
- margin-bottom: 0;
- }
- h2 {
- padding: 0 0 10px 0;
- }
- h3 {
- font-size: 1.2em;
- }
- h4 {
- font-size: 1.1em;
- }
- h5, h6 {
- font-size: 1em;
- }
- /* PRIMARY LAYOUT ELEMENTS
- ----------------------------------------------------------*/
- /* you can specify a greater or lesser percentage for the
- page width. Or, you can specify an exact pixel width. */
- #main
- {
- overflow: hidden;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding-top: 100px;
- }
- #title
- {
- height: 100px;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- }
- #title h1 {
- font-weight: bold;
- padding: 5px 0;
- padding-left: 15px;
- margin: 0;
- color: #fff;
- border: none;
- line-height: 2em;
- font-size: 32px !important;
- text-shadow: 1px 1px 2px #111;
- }
- #title #menu
- {
- text-align: center;
- color: white;
- }
- #title #menu a
- {
- color: white;
- }
- #ourOwnBabylonJSCanvas {
- width: 100%;
- height: 100%;
- }
- #logo
- {
- background-color: White;
- text-align: center;
- padding: 20px;
- /* FORM LAYOUT ELEMENTS
- ----------------------------------------------------------*/
- fieldset {
- border: 1px solid #ddd;
- padding: 0 1.4em 1.4em 1.4em;
- margin: 0 0 1.5em 0;
- }
- legend {
- font-size: 1.2em;
- font-weight: bold;
- }
- textarea {
- min-height: 75px;
- }
- input[type="text"],
- input[type="password"] {
- border: 1px solid #ccc;
- padding: 2px;
- font-size: 1.2em;
- color: #444;
- width: 200px;
- }
- select {
- border: 1px solid #ccc;
- padding: 2px;
- font-size: 1.2em;
- color: #444;
- }
- input[type="submit"] {
- font-size: 1.2em;
- padding: 5px;
- }
- /* TABLE
- ----------------------------------------------------------*/
- table {
- border: solid 1px #e8eef4;
- border-collapse: collapse;
- }
- table td {
- padding: 5px;
- border: solid 1px #e8eef4;
- }
- table th {
- padding: 6px 5px;
- text-align: left;
- background-color: #e8eef4;
- border: solid 1px #e8eef4;
- }
- /* MISC
- ----------------------------------------------------------*/
- .clear {
- clear: both;
- }
- .error {
- color: Red;
- }
- div#title {
- display: block;
- text-align: left;
- }
- /* Styles for validation helpers
- -----------------------------------------------------------*/
- .field-validation-error {
- color: #ff0000;
- }
- .field-validation-valid {
- display: none;
- }
- .input-validation-error {
- border: 1px solid #ff0000;
- background-color: #ffeeee;
- }
- .validation-summary-errors {
- font-weight: bold;
- color: #ff0000;
- }
- .validation-summary-valid {
- display: none;
- }
- /* Styles for editor and display helpers
- ----------------------------------------------------------*/
- .display-label,
- .editor-label {
- margin: 1em 0 0 0;
- }
- .display-field,
- .editor-field {
- margin: 0.5em 0 0 0;
- }
- .text-box {
- width: 30em;
- }
- .text-box.multi-line {
- height: 6.5em;
- }
- .tri-state {
- width: 6em;
- }
|