-
Notifications
You must be signed in to change notification settings - Fork 0
/
risk.css
100 lines (100 loc) · 1.45 KB
/
risk.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
body{
text-align: center;
margin: 5px auto;
}
#users_div{
height: 150px;
margin: auto;
display: inline-block;
}
.userInfo{
float:left;
width:120px;
height: 150px;
border-radius: 8px;
}
img{
display:block;
margin: auto;
padding: 8px;
}
h5{
font: 24px Verdana;
}
#progressbarg{
width:900px;
padding:1px;
background-color:white;
border:1px solid black;
height:28px;
margin: 10px auto 10px auto;
text-align: center;
border-radius: 5px;
}
.indicatorg{
width:0px;
background-color:green;
height:28px;
margin:0;
float:left;
}
#chart_div{
width: 900px;
height: 500px;
margin: auto;
}
.progressbar{
width:100px;
padding:1px;
background-color:white;
border:1px solid black;
height:25px;
margin: auto;
text-align: center;
color: black;
border-radius: 5px;
}
.indicator{
width:0px;
height:25px;
margin:0;
border-radius: 5px;
color: black;
font: 14px Arial;
}
#gameover{
color: white;
font: 18px Arial;
text-align: center;
}
#daysleft{
position:absolute;
width:200px;
height:100px;
left:0;
top:650px;
text-align:center;
padding: 0 10px;
font: 18px Verdana;
line-height:100px;
background-color: gold;
color: white;
}
#outer{
display: table;
width: 100%;
overflow: hidden;
}
#endOfGame{
position:absolute;
width:600px;
height:350px;
left:200px;
top:225px;
text-align:center;
padding: 0 10px;
font: 18px Verdana;
background-color: dimgrey;
color: white;
overflow: hidden;
}