-
Notifications
You must be signed in to change notification settings - Fork 13
/
terminal.css
101 lines (95 loc) · 1.69 KB
/
terminal.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
.container{
margin-top: 20px;
}
#editor {
position: relative;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.jumbotron-fluid{
margin-top: 0px;
}
.btn-light{
padding: 10px;
}
.texteditor{
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Helvetica', 'Arial', sans-serif;
color: #333;
}
.wrapper {
background-color: #fff;
width: 830pt;
padding-left: 10pt;
padding-right: 10pt;
padding-top: 20pt;
border-radius: 10px;
box-shadow: 0px 0px 40px rgba(0,0,0,0.1);
}
input[type="text"] {
height: 20pt;
width: 10%;
padding: 0;
border: 0;
outline: none;
font-size: 14px;
margin-top: 5pt;
}
.options {
width: 100%;
height: 30pt;
/*margin-top: 5pt;
border-top: 1px solid #ddd;*/
}
iframe {
border: 0;
width: 50%;
margin-bottom: 5pt;
height: 250pt;
}
.seperator {
display: inline;
border-left: 1px solid #ddd;
height: 30pt;
}
.btn-dark{
margin: 0;
padding: 0;
height: 30pt;
width: 30pt;
background-color: #fff;
border: 0;
cursor: pointer;
color: #333;
}
.btn-dark:active {
color: #333;
}
select {
height: 30pt;
-webkit-appearance: none;
border: 0;
padding-left: 5pt;
padding-right: 5pt;
outline: none;
}
input[type="number"] {
height: 30pt;
border: 0;
padding: 0;
padding-left: 5pt;
padding-right: 5pt;
outline: none;
}
.btn-warning{
margin-top: 10px;
}
/*.btn-outline-warning{
margin:auto;
display: block;
}