-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
115 lines (99 loc) · 2.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
* {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.thing {
padding: 0px;
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;
}
.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;
}
.list-panel {
padding: 5px 15px 5px 15px;
border-radius: 0;
background-color: #FFF;
border: 1px solid #E0E0E0;
color: #797979;
}
/* ---------------------- */
.heading {
background-color: #14181C;
height: 40px;
}
.heading-text {
font-size: 22px;
color: #fff;
padding-top: 4px;
}
.row {
margin-left: 0px !important;
margin-right: 0px !important;
}
.logo {
width: 100px;
height: 27px;
background-image: url(images/logo.png);
background-repeat: no-repeat;
margin: 0px auto;
margin-bottom: 0px;
}
/*CSS for serving the retina image to devices with a high "device-pixel-ratio":*/
@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
.logo {
background-image: url(images/[email protected]);
background-size: 100px 27px;
}
}