-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
90 lines (76 loc) · 1.28 KB
/
app.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
body {
background-color: transparent;
font-size: 14px;
}
#background {
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -1;
background-size: 1200px;
background-repeat: repeat;
background-image: url('spotify:image:e4940ac3ba1c6312465cb7a952ee55c093ec2448');
}
#darkener {
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -1;
background-color: rgba(0, 0, 0, 0.3);
}
#chatroom {
margin: 20px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.7);
width: 600px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
#chat {
width: 340px;
height: 400px;
float: left;
overflow: hidden;
padding-bottom:10px;
margin-bottom:10px;
}
.message {
padding-bottom:2px;
padding-left:16px;
text-indent:-16px;
color: #e0e0e0;
}
#sidebar {
width: 230px;
float: right;
text-align: right;
}
#sidebar h1 {
font-size: 30px;
margin-bottom: 10px;
}
#sidebar ul {
}
.me {
color:#90b61a;
}
.them {
color:#fff;
}
#namecontrols {
clear: both;
width: 100%;
}
#messagecontrols {
display: none;
clear: both;
width: 100%;
}
#text {
width: 300px;
}