| Revision 569,
1.8 KB
checked in by jdalbey, 6 years ago
(diff) |
|
GTEC remove search box.
|
| Line | |
|---|
| 1 | @font-face { |
|---|
| 2 | font-family: Scoreboard; |
|---|
| 3 | src: url('../js/scoreboard.ttf'); |
|---|
| 4 | } |
|---|
| 5 | /* Set the size of the div element that contains the map */ |
|---|
| 6 | #mapdiv { |
|---|
| 7 | height: 100%; |
|---|
| 8 | width: 100%; |
|---|
| 9 | } |
|---|
| 10 | /* Makes the page fill the window. */ |
|---|
| 11 | html, body { |
|---|
| 12 | height: 100%; |
|---|
| 13 | margin: 0; |
|---|
| 14 | padding: 0; |
|---|
| 15 | } |
|---|
| 16 | button { |
|---|
| 17 | display: inline-block; |
|---|
| 18 | border: 2px solid black; |
|---|
| 19 | border-radius: 8px; |
|---|
| 20 | padding: 1rem 2rem; |
|---|
| 21 | margin: 0; |
|---|
| 22 | text-decoration: none; |
|---|
| 23 | background: gray; |
|---|
| 24 | color: #ffffff; |
|---|
| 25 | font-family: sans-serif; |
|---|
| 26 | font-size: 1rem; |
|---|
| 27 | cursor: pointer; |
|---|
| 28 | text-align: center; |
|---|
| 29 | transition: background 250ms ease-in-out, |
|---|
| 30 | transform 150ms ease; |
|---|
| 31 | -webkit-appearance: none; |
|---|
| 32 | -moz-appearance: none; |
|---|
| 33 | } |
|---|
| 34 | |
|---|
| 35 | button:hover, |
|---|
| 36 | button:focus { |
|---|
| 37 | background: #0053ba; |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | button:focus { |
|---|
| 41 | outline: 1px solid #fff; |
|---|
| 42 | outline-offset: -4px; |
|---|
| 43 | } |
|---|
| 44 | |
|---|
| 45 | button:active { |
|---|
| 46 | transform: scale(0.99); |
|---|
| 47 | } |
|---|
| 48 | |
|---|
| 49 | .test { |
|---|
| 50 | width:200px; |
|---|
| 51 | display:inline-block; |
|---|
| 52 | overflow: auto; |
|---|
| 53 | white-space: nowrap; |
|---|
| 54 | margin:0px auto; |
|---|
| 55 | border:1px red solid; |
|---|
| 56 | } |
|---|
| 57 | #time { |
|---|
| 58 | background: #E6E6FA; |
|---|
| 59 | font-family: Roboto; |
|---|
| 60 | font-size: 16px; |
|---|
| 61 | font-weight: 400; |
|---|
| 62 | margin-right: 40px; |
|---|
| 63 | margin-bottom: 0px; |
|---|
| 64 | } |
|---|
| 65 | |
|---|
| 66 | #ctrButton { |
|---|
| 67 | cursor: pointer; |
|---|
| 68 | background-color: #fff; |
|---|
| 69 | margin-right: 7px; |
|---|
| 70 | border: thick solid white; |
|---|
| 71 | } |
|---|
| 72 | .unstyled-button { |
|---|
| 73 | border: 0 none; |
|---|
| 74 | padding: 0; |
|---|
| 75 | background: none; |
|---|
| 76 | cursor: pointer; |
|---|
| 77 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.