-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
146 lines (126 loc) · 2.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Author: Salvador Guerrero */
* {
box-sizing: border-box;
}
body {
background-color: black;
margin: 0;
}
textarea {
font-size: 1em;
color: lawngreen;
resize: none;
width: 100%;
height: 100%;
border: 1px solid darkgreen;
background-color: #1e1e1e;
}
button {
height: 100%;
width: 20%;
cursor: pointer;
font-size: 1em;
border: 0;
background-color: #1e1e1e;
}
button:hover {
background-color: #282828;
}
button:focus {
outline:0;
}
.textStyle {
color: #68db00;
font-family: "Andale Mono",monospace;
}
.largeTextDiv {
width: 100%;
display:inline-block;
height: 50%;
}
.verticalLine {
border-left: 1px solid darkgreen;
height: 100%;
}
#container {
margin: auto;
width: 80%;
height: 80vh;
}
#inputDiv {
padding-top: 1.4em;
padding-bottom: 2em;
border: 0;
}
#resultDiv {
padding-top: -2em;
padding-bottom: 3em;
border: 0;
pointer-events: none;
}
#buttonsDiv {
height: 4em;
margin: -2em 0 0 0;
width: 100%;
display: flex;
/* didn't work: flex-direction: column;*/
align-items: center;
border-top: 0;
border-right: 1px solid darkgreen;
border-bottom: 0;
border-left: 1px solid darkgreen;
}
.verticalStack {
height: 100%;
width: 20%;
/*display: flex;*/
/*align-items: center;*/
/*height: 50px;*/
/*border: 1px solid red;*/
}
.smallLabel {
display: inline-block;
box-sizing: border-box;
height: 50%;
line-height: 200%;
padding-left: 0.25em;
}
.smallInput {
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 50%;
padding-left: 0.5em;
border: 1px solid #ccc;
}
#header {
font-size: 1em;
display:inline-block;
width: 100%;
margin: 0 0 -1.4em 0;
padding: 0.2em 0 0 0.2em;
border: 0;
}
#footer {
font-size: 0.5em;
display:inline-block;
width: 100%;
margin: -5.8em 0 0 0;
padding: 0.2em 0 0 0.2em;
border: 0;
vertical-align: center;
}
/* Responsive layout - when the screen is less
* than 600px wide, make the two columns stack
* on top of each other instead of next to each
* other */
@media screen and (max-width: 600px) {
#container {
width: 95%;
}
}
@media screen and (max-height: 600px) {
#container {
height: 95vh;
}
}