-
Notifications
You must be signed in to change notification settings - Fork 2
/
dark.css
115 lines (95 loc) · 1.47 KB
/
dark.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
html, body {
height: auto;
}
html {
display: table;
margin: auto;
}
body {
background-color: #000000;
font: 12px Consolas, Courier;
color: #FFFFFF;
padding: 35px;
display: table-cell;
text-align: center;
vertical-align: middle;
}
form, p, span {
margin: 0;
padding: 0;
}
input {
font: 12px Consolas, Courier;
}
a {
color: #FF0000;
text-decoration: none;
}
a:hover {
cursor: pointer;
text-decoration: underline;
}
#wrapper,#loginform {
margin: 0 auto;
margin-top: 3vh;
margin-bottom: 3vh;
padding-bottom: 25px;
text-align: center;
background: #202020;
width: 50vw;
border: 1px solid #474747;
}
#loginform {
padding-top: 18px;
}
#loginform p {
margin: 5px;
}
#chatbox {
text-align: left;
margin: 0 auto;
margin-bottom: 25px;
padding: 10px;
background: #202020;
height: 70vh;
width: 45vw;
border: 1px solid #474747;
overflow: auto;
}
#usermsg {
width: 40vw;
border: 1px solid #FFFFFF;
}
#submit {
width: 60px;
}
.error {
color: #ff0000;
}
#menu {
padding: 12.5px 25px 12.5px 25px;
}
.welcome {
float: left;
}
.logout {
float: right;
}
.msgln {
margin: 0 0 2px 0;
}
user {
color: #00FF00;
font: 15px Consolas, Courier;
font-weight: bold;
letter-spacing: -1px;
}
alert {
text-align: center;
}
img {
text-align: left;
vertical-align: top;
margin-bottom: 10px;
max-width: 20vw;
}