-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (52 loc) · 763 Bytes
/
style.css
File metadata and controls
64 lines (52 loc) · 763 Bytes
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
html {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin: 0 auto;
height: 98%;
width: 98%;
margin-top: 5%;
text-align: center;
}
form {
visibility: visible;
}
input {
width: 300px;
font-size: 1em;
}
button {
display: inline-block;
}
.sessionBox {
width: 100%;
color: rgb(186, 186, 186);
}
.sessStatus {
margin: 0 auto;
height: 1em;
padding: 0.5em;
width: 180px;
display: block;
position: inherit;
margin-bottom: 1em;
border-radius: 90px;
color: white;
}
.started {
background-color: rgb(141, 206, 141);
}
.ended {
background-color: rgb(251, 150, 150);
}
.pending {
background-color: rgb(220, 220, 220);
}
.resultMsg {
margin-top: 1.5em;
}