forked from blueappio/terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.52 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
.thing {
padding: 14px;
font-size: large;
font-weight: 500;
}
md-toast.md-success-toast-theme .md-toast-content {
background-color: green;
}
md-toast.md-error-toast-theme .md-toast-content {
background-color: red;
}
md-toast {
top: 10px;
right: 0px;
}
.connect-btn {
top: 20px;
background-color: rgb(21,101,192) !important;
color: #ffffff !important;
}
.terminal-textfield {
display: block;
padding-top: 15px;
margin-bottom: 10px;
position: relative;
}
.terminal-textfield > textarea {
min-height: 390px;
width: 100%;
}
.terminal-textfield > input, .terminal-textfield > textarea {
-webkit-animation-duration: .1ms;
animation-duration: .1ms;
-webkit-animation-name: mui-node-inserted;
animation-name: mui-node-inserted;
display: block;
background-color: transparent;
color: rgba(0, 0, 0, .87);
border: none;
outline: 0;
width: 100%;
font-size: 16px;
padding: 0;
box-shadow: none;
border-radius: 0;
background-image: none;
}
.terminal-textfiled-border {
border: 1px solid #ccc;
padding: 6px;
}
.terminal-textfield > input {
height: 32px;
border-bottom: 1px solid rgba(0, 0, 0, .26);
}
.send-btn {
background-color: #28ade5 !important;
color: #ffffff !important;
}
.connect-btn {
background-color: #dc6767 !important;
color: #ffffff !important;
}
.list-panel {
padding: 5px 15px 5px 15px;
border-radius: 0;
background-color: #FFF;
border: 1px solid #E0E0E0;
color: #797979;
}