-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
145 lines (125 loc) · 1.71 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
*
{
border: 0px;
margin: 0px;
padding: 0px;
background-color: #20242a;
color: #9CA4B4;
text-align: left;
font-family: Arial, Verdana, sans-serif;
}
/* revert the background color given to links above */
a
{
background-color: inherit;
}
html, body
{
height: 100%;
width: 100%;
}
#navigation
{
float: left;
border-right: 1px solid black;
width:250px;
}
#content
{
/* this prevents horizontal scrollbars from popping up */
word-wrap: break-word;
}
.flexHorizontal
{
/* keeps the edit and delete buttons on the same line as their query */
display: flex;
/* centers the edit and delete buttons with their query */
align-items: center;
}
button
{
width: 100%;
height: 27px;
margin: 2px 0px 2px 0px;
padding: 6px;
word-wrap: break-word;
}
.clickable
{
background-color: #272B33;
max-height: 30px;
cursor: default;
}
.clickable:hover
{
background-color: #30353F;
color: #C8D5EE;
}
img
{
min-width: 27px;
min-height: 27px;
background-size: 20px;
background-repeat: no-repeat;
background-position: center;
margin:0px;
}
.editButton
{
background-image: url(edit.png);
}
.editButton:hover
{
background-image: url(edit_bright.png);
}
.deleteButton
{
background-image: url(delete.png);
}
.deleteButton:hover
{
background-image: url(delete_bright.png);
}
input
{
margin: 5px;
padding: 5px;
border: 1px solid;
}
#file
{
margin-left: 0px;
margin-right: 0px;
border: 0px;
}
.scroller
{
padding-left: 10px;
padding-right: 10px;
height: 100%;
overflow-y: auto;
}
.message
{
background-color: #272B33;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
}
.sender
{
font-weight: bold;
background-color:inherit;
padding: inherit;
}
.content
{
background-color:inherit;
padding: inherit;
}
.time
{
font-size: 50%;
background-color:inherit;
padding: inherit;
}