-
Notifications
You must be signed in to change notification settings - Fork 44
/
styles.scss
130 lines (115 loc) · 1.99 KB
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import './colors';
@import './mixins';
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
font-family: Tahoma, Verdana, Segoe, sans-serif;
}
canvas {
// display: block;
display: none;
margin: 0;
padding: 0;
}
input[type='text'] {
@include border-reversed();
background-color: $secondary-green;
}
button {
outline: none;
}
button:hover {
cursor: pointer;
}
.main-menu {
// display: none;
display: block;
}
#buy-menu {
position: absolute;
top: 0;
left: 6px;
bottom: 0;
display: flex;
align-items: center;
color: #fff;
display: none;
#buy-menu-container > div {
display: flex;
}
.price {
flex: 1;
padding-left: 24px;
text-align: right;
}
}
.styled-select {
// background: url(http://i62.tinypic.com/15xvbd5.png) no-repeat 96% 0;
height: 29px;
overflow: hidden;
background-color: $secondary-green;
border: 1px solid $secondary-green;
color: $grey;
width: 268px;
@include border-reversed();
}
.styled-select select {
background: transparent;
border: none;
font-size: 14px;
height: 29px;
padding: 5px;
color: $grey;
/* If you add too much padding here, the options won't show in IE */
width: 268px;
}
#console-container {
display: none;
position: static;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#console {
display: flex;
flex-direction: column;
flex: 1;
position: absolute;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
background-color: $secondary-green;
@include border-reversed();
}
#console-container .output-container {
flex: 1;
margin: 6px;
@include border-reversed();
}
#console-container .input-container {
height: 40px;
display: flex;
padding: 6px;
}
#console-container .input-container button {
color: $grey;
background-color: $main-green;
padding: 8px;
font-size: 16px;
height: 40px;
@include border();
}
#console-container .input-container input {
width: 100%;
height: 40px;
margin-right: 6px;
outline: none;
color: $grey;
}