-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
93 lines (85 loc) · 1.51 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
body{
background-color: #222;
margin: 0;
position: relative;
width: 100%;
height: 100%;
}
div.header {
font-family: 'Open Sans', sans-serif;
padding-left: 0;
text-align: center;
vertical-align: middle;
font-weight: bolder;
font-size: 4vh;
color: white;
background-color: #42484a;
height: 50px;
line-height: 50px;
width: 100%;
}
div.terminal {
position: absolute;
font-size: 2vh;
width: 100%;
height: calc(100% - 50px);
background-color: #222;
}
div.footer {
font-family: 'Teko', sans-serif;
padding: 0;
position: absolute;
display: flex;
bottom: 0;
text-align: center;
vertical-align: middle;
font-weight: bold;
font-size: 4vh;
color: white;
background-color: #42484a;
height: 50px;
line-height: 50px;
width: 100%;
}
div.inputfield {
text-align: left;
width: calc(100% - 150px);
background-color: inherit;
height: inherit;
}
div.button {
text-align: center;
height: 50px;
width: 50px;
}
button {
text-align: center;
height: inherit;
width: inherit;
background-color: inherit;
border: none;
color: white;
}
textarea.terminal {
position: absolute;
color: white;
width: inherit;
height: inherit;
background-color: inherit;
resize: none;
border: none;
}
input.input {
font-family: 'Open Sans', sans-serif;
color: white;
font-size: 3vh;
position: absolute;
line-height: 50px;
width: inherit;
height: inherit;
background-color: inherit;
resize: none;
border: none;
white-space: nowrap;
overflow-x: scroll;
}