-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
42 lines (36 loc) · 973 Bytes
/
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
* {
-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 */
}
input {
-webkit-touch-callout: auto !important;
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
.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 {
background-color: rgb(21,101,192) !important;
color: #ffffff !important;
}