forked from hlatki/FridgeNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·77 lines (70 loc) · 1.68 KB
/
style.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
#header {
width: 100%;
position: absolute;
top: 0;
left: 0;
padding: 5px;
background-color: #CCCCCC;
line-height: 18px;
font-size: 12px;
}
#header h1 {
font-size: 16px;
display: inline;
margin-right: 5px;
}
#header p {
display: inline;
margin-left: 5px;
}
#board {
z-index: 100;
list-style-type: none;
position: absolute;
background-color: #FFFF99;
border: 1px solid black;
top: 30px;
left: 20px;
padding: 0;
width: 800px;
height: 600px;
}
#board li {
z-index: inherit;
background: white;
position: absolute;
color: black;
cursor: move;
border: 1px solid black;
padding: 4px;
width: auto;
font-family: "American Typewriter", courier, monospace;
font-size: 16px;
line-height: 18px;
}
.info {
color: green;
line-height: 12px;
font-size: 10px;
}
#error {
z-index: 40;
position: absolute;
top: 150px;
left: 50px;
width: 400px;
padding: 5px;
color: #2e2e2e;
background-color: #f3d8d8;
border: 1px solid #cc0000;
}
#numUsers {
position: absolute;
display: inline;
/*line-height: 18px;
font-size: 12px;*/
right: 0;
top: 0;
padding: 5px;
/* color: green; */
}