blob: a6e800341d92a7f5cca5eaa8ea01be8e176dab76 [file] [log] [blame]
Matteo Scandolo4208f112016-08-10 17:02:02 -07001@import '../../../../style/sass/lib/_variables.scss';
2
3// The solarized palette
4
5$background: #002b36;
6$hl: #073642;
7$comment: #586e75;
8$foreground: #839496;
9$emph: #93a1a1;
10
11$yellow: #b58900;
12$orange: #cb4b16;
13$red: #dc322f;
14$magenta: #d33682;
15$violet: #6c71c4;
16$blue: #268bd2;
17$cyan: #2aa198;
18$green: #859900;
19
20#xosUITutorial {
21 width: 100%;
Matteo Scandoloa81496a2016-08-16 17:29:42 -070022
23 .ace_editor { height: 200px; }
24
Matteo Scandolo4208f112016-08-10 17:02:02 -070025 js-shell {
26 display: block;
27
28 #shell-panel {
29 width: 100%;
30 height: 400px;
31 background: $background;
32 padding: 10px;
33 overflow: scroll;
Matteo Scandoloef969922016-08-11 13:49:12 -070034 color: $emph;
Matteo Scandolo4208f112016-08-10 17:02:02 -070035
36 .prompt {
37 color: $magenta;
38 }
39
Matteo Scandoloef969922016-08-11 13:49:12 -070040 .input {
41 color: $blue;
42 }
43
Matteo Scandolo4208f112016-08-10 17:02:02 -070044 .cursor {
45 color: $cyan;
46 }
47
48 .error {
49 color: $red;
50 }
51
52 #shell-view {
Matteo Scandolo4208f112016-08-10 17:02:02 -070053
54 >div>div{
55 color: $blue;
56 }
Matteo Scandoloef969922016-08-11 13:49:12 -070057
58 .jsonObject {
59 white-space: nowrap;
60 }
61
62 .jsonCollection {
63 >.jsonObject{
64 margin-left: 10px;
65 }
66 }
Matteo Scandolo4208f112016-08-10 17:02:02 -070067 }
68 }
69 }
70}