-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
122 lines (121 loc) · 1.86 KB
/
styles.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
116
117
118
119
120
121
122
input {
font-family: inherit;
font-size: inherit;
}
#msg {
flex-basis: 100%;
padding: 5px;
outline: none;
border: none;
}
.input-wrapper {
align-items: center;
justify-content: space-between;
margin-top: 5px;
}
#msg-list {
/* flex-basis: 100%;
list-style-type: none;
margin: 0;
padding: 0;*/
}
.msg-wrapper {
padding: 5px;
overflow: auto;
/* resize: vertical;
min-height: 200px;
max-height: 100%;*/
height: 100%;
}
.pinned-wrapper {
padding: 5px;
margin-bottom: 5px;
}
/*#msg-list > div {
padding: 1px;
}*/
.info {
margin-top: 5px;
padding: 5px;
justify-content: space-between;
flex-wrap: wrap;
}
.token-input {
border: 0px;
padding: 0px;
margin: 0px;
text-align: right;
}
#footer {
margin: 5px 5px 0px 0px;
flex-direction: column;
}
.button {
background-color: white;
color: black;
transition-duration: 0.4s;
padding: 5px;
margin-right: 5px;
width: 70px;
text-align: center;
outline: none;
border: 1px solid dodgerblue;
}
.button:hover {
background-color: dodgerblue;
/*color: white;*/
}
#msg-count-wrapper {
flex-basis: 100%;
align-items: center;
}
#count-wrapper {
color: lightgray;
margin-right: 5px;
}
.flex-row {
display: flex;
flex-direction: row;
}
.flex-col {
display: flex;
flex-direction: column;
}
#msg-input-wrapper {
flex-basis: 100%;
}
#amount-wrapper {
margin-left: 5px;
align-items: center;
}
#amount {
width: 60px;
border: none;
padding: 5px;
}
input::-webkit-input-placeholder{
color: lightgray;
}
input:-moz-placeholder{
color: lightgray;
}
a:link {
color: black;
text-decoration: underline;
text-decoration-color: dodgerblue
}
a:visited {
color: black;
text-decoration: underline;
text-decoration-color: dodgerblue
}
a:hover {
color: dodgerblue;
text-decoration: underline;
text-decoration-color: dodgerblue
}
a:active {
color: blue;
text-decoration: underline;
text-decoration-color: dodgerblue
}