-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (84 loc) · 1.89 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
html, body {
/* stop margins */
margin: 0;
/* stop scrolling */
overflow: hidden;
/* set background */
background-color: rgb(13, 32, 59);
}
* {
font-size: 1.25vw;
}
#speedSlider {
width: 9%;
}
textarea { /* for all text area */
outline: none;
color: white;
margin: 1%;
font-family: monospace;
justify-content: space-between;
white-space: pre-wrap;
resize: none;
border-style: hidden;
}
.LMCBox {
background-color: rgb(26, 62, 116);
}
#codeInput { /* for just one element (the code input box here) */
width: 20%;
height: 88%;
}
#assembledCode {
width: 7.5%;
height: 88%;
}
#inputBox {
width: 3.75%;
height: 3%;
overflow: hidden;
}
#titleBox {
margin-top: 0;
width: 20%;
height: 4.5%;
}
#outputtedCode {
width: 15%;
height: 30%;
}
#inputSubmit {
margin: 1%;
background-color: grey;
}
.optionButton {
height: 5%;
margin-left: 1%;
background-color: grey;
}
.optionButton:hover, #inputSubmit:hover {
background-color: #616161
}
.optionButton:active, #inputSubmit:active {
background-color: #454545
}
button {
display: inline-block;
border: none;
cursor: pointer;
text-align: center;
border-style: hidden;
font-family: monospace;
}
.menuButton {
height: 5%;
width: 7.5%;
background-color: rgb(0, 122, 55);
color: white;
}
.menuButton:hover { /* when the mouse is over the button */
background-color: rgb(1, 96, 44);
}
.menuButton:active { /* when the mouse is clicked on the button */
background-color: rgb(1, 65, 30);
}