blob: 47d5d39041bac2a355f82fb58ef8d819c0ab2fbb [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
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 Scandolo4208f112016-08-10 17:02:02 -070019@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 Scandoloa81496a2016-08-16 17:29:42 -070040
41 .ace_editor { height: 200px; }
42
Matteo Scandolo4208f112016-08-10 17:02:02 -070043 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 Scandoloef969922016-08-11 13:49:12 -070052 color: $emph;
Matteo Scandolo4208f112016-08-10 17:02:02 -070053
54 .prompt {
55 color: $magenta;
56 }
57
Matteo Scandoloef969922016-08-11 13:49:12 -070058 .input {
59 color: $blue;
60 }
61
Matteo Scandolo4208f112016-08-10 17:02:02 -070062 .cursor {
63 color: $cyan;
64 }
65
66 .error {
67 color: $red;
68 }
69
70 #shell-view {
Matteo Scandolo4208f112016-08-10 17:02:02 -070071
72 >div>div{
73 color: $blue;
74 }
Matteo Scandoloef969922016-08-11 13:49:12 -070075
76 .jsonObject {
77 white-space: nowrap;
78 }
79
80 .jsonCollection {
81 >.jsonObject{
82 margin-left: 10px;
83 }
84 }
Matteo Scandolo4208f112016-08-10 17:02:02 -070085 }
86 }
87 }
88}