-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
104 lines (90 loc) · 1.33 KB
/
style.css
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
body, html {
overflow: hidden;
margin: 0px;
}
canvas {
width: 100%;
height: 100%;
}
#input {
height: 100%;
position: absolute;
width: 800px;
height: 600px;
top: 50%;
left: 50%;
margin-left: -400px;
margin-top: -450px;
}
#blinds {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 0.8;
}
#popout {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#container {
z-index: 100;
width: 100%;
display: none;
}
#instructions {
float: left;
width: 100%;
background-color: #1F211D;
padding: 10px;
border-top: 10px solid #171714;
border-left: 10px solid #171714;
border-right: 10px solid #171714;
color: #E6DB74;
font-family: 'Inconsolata', sans-serif;
}
#redFunc {
background-color: #272822;
color: #F92672;
}
#greenFunc {
background-color: #1F211D;
color: #A6E22E;
}
#blueFunc {
background-color: #272822;
color: #66D9EF;
border-bottom: 10px solid #171714;
}
.funcInput {
float: left;
margin: 0;
width: 100%;
height: 30%;
margin: 0;
border: none;
border-left: 10px solid #171714;
border-right: 10px solid #171714;
font-family: 'Inconsolata', sans-serif;
font-size: 13pt;
}
.varName {
color: white;
}
.varValue {
color: #AE81DD;
}
textarea {
padding: 10px;
overflow: hidden;
resize: none;
outline: none;
}
td {
padding: 0;
}