-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (76 loc) · 1.42 KB
/
style.css
File metadata and controls
99 lines (76 loc) · 1.42 KB
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
/* Set height of the grid so .sidenav can be 100% (adjust if needed) */
/*.row.content {height: 1500px}*/
/* Set gray background color and 100% height */
.sidenav {
background-color: #333;
height: 100%;
}
body {
background-color: #fff;
}
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}
.row.content {height: auto;}
}
a {
color: #eee;
}
#status {
color: #333;
}
#statusP {
margin: 10px;
}
.mainTitle {
color: #f0f0f0
}
#chatbox {
border: 5px solid #333;
background-color: #333;
padding: 0px;
margin: 10px;
}
#messages {
background-color: #fff;
margin: 5px;
padding: 5px;
overflow-y: scroll;
height: 84vh;
position: relative;
}
#sendbox {
background-color: #fff;
margin: 5px;
margin-top: 10px;
padding: 5px;
}
#msgbox {
padding: 5px;
}
#sendbtn, #msgbox {
display: inline-block;
width: 100%;
height: 30px;
}
.sendboxrow {
margin: 0px 0px 0px 0px;
}
#msgcol {padding-right: 2px; padding-left: 2px;}
#btncol {padding-left: 2px; padding-right: 2px;}
#addChatBtn {
margin-bottom: 10px;
}
.leftPad {
padding-left: 15px;
}
/*
COLORS:
Primary: 333
Dark: 222
Accent: f60
Background: f0f0e8
*/