forked from jmcker/Peer-to-Peer-Cue-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (84 loc) · 1.19 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
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
body {
font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
background-color: white;
min-width: 450px;
}
h1 {
font-size: 1.75em;
}
h2 {
text-align: center;
font-size: 4em;
}
td {
width: 50%;
}
input {
margin-bottom: 5px;
}
a:visited{
color: blue;
}
.display {
width: 100%;
min-height: 400px;
padding-bottom: 20px;
}
.control {
width: 100%;
padding-bottom: 20px;
}
.control-button {
width: 100%;
min-height: 50px;
}
.display-box {
border: 2px solid black;
}
.title {
vertical-align: top;
}
.standby {
background-color: red;
}
.go {
background-color: green;
}
.fade {
background-color: yellow;
}
.off {
background-color: gray;
}
.hidden {
visibility: hidden;
}
.no-display {
display: none;
}
.status {
height: 125px;
vertical-align: text-top;
font-weight: bold;
margin-bottom: 10px;
border-bottom: 2px solid black;
}
.message {
height: 125px;
max-height: 125px;
margin-bottom: 10px;
border-bottom: 2px solid black;
overflow: auto;
}
.msg-time {
color: blue;
}
.cueMsg {
color: orange;
}
.selfMsg {
color: green;
}
.peerMsg {
color: red;
}