-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
52 lines (52 loc) · 872 Bytes
/
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
body {
color: white;
background-color: black;
font-size: 12px;
font-family: 'Courier New', Courier, monospace;
}
#box {
width: 980px;
}
#sidebar {
width: 200px;
float: left;
}
#main {
width: 760px;
float: left;
margin-left: 5px;
}
#messages {
font-size: 14px;
padding: 3px;
}
.line {
width: 98%;
height: 20px;
position: relative;
margin: 1%;
}
.line .bar {
height: 100%;
position: absolute;
background: crimson;
}
.line .left {
position: absolute;
width: 100%;
height: 100%;
text-align: left;
text-shadow: 2px 2px 2px #000;
padding-top: 3px;
padding-left: 1%;
}
.line .right {
position: absolute;
box-sizing: border-box;
width: 100%;
height: 100%;
text-align: right;
text-shadow: 2px 2px 2px #000;
padding-top: 3px;
padding-right: 1%;
}