Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 19 | @import '../../../../style/sass/lib/_variables.scss'; |
| 20 | |
| 21 | // The solarized palette |
| 22 | |
| 23 | $background: #002b36; |
| 24 | $hl: #073642; |
| 25 | $comment: #586e75; |
| 26 | $foreground: #839496; |
| 27 | $emph: #93a1a1; |
| 28 | |
| 29 | $yellow: #b58900; |
| 30 | $orange: #cb4b16; |
| 31 | $red: #dc322f; |
| 32 | $magenta: #d33682; |
| 33 | $violet: #6c71c4; |
| 34 | $blue: #268bd2; |
| 35 | $cyan: #2aa198; |
| 36 | $green: #859900; |
| 37 | |
| 38 | #xosUITutorial { |
| 39 | width: 100%; |
Matteo Scandolo | a81496a | 2016-08-16 17:29:42 -0700 | [diff] [blame] | 40 | |
| 41 | .ace_editor { height: 200px; } |
| 42 | |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 43 | js-shell { |
| 44 | display: block; |
| 45 | |
| 46 | #shell-panel { |
| 47 | width: 100%; |
| 48 | height: 400px; |
| 49 | background: $background; |
| 50 | padding: 10px; |
| 51 | overflow: scroll; |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 52 | color: $emph; |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 53 | |
| 54 | .prompt { |
| 55 | color: $magenta; |
| 56 | } |
| 57 | |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 58 | .input { |
| 59 | color: $blue; |
| 60 | } |
| 61 | |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 62 | .cursor { |
| 63 | color: $cyan; |
| 64 | } |
| 65 | |
| 66 | .error { |
| 67 | color: $red; |
| 68 | } |
| 69 | |
| 70 | #shell-view { |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 71 | |
| 72 | >div>div{ |
| 73 | color: $blue; |
| 74 | } |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 75 | |
| 76 | .jsonObject { |
| 77 | white-space: nowrap; |
| 78 | } |
| 79 | |
| 80 | .jsonCollection { |
| 81 | >.jsonObject{ |
| 82 | margin-left: 10px; |
| 83 | } |
| 84 | } |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 85 | } |
| 86 | } |
| 87 | } |
| 88 | } |