-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
70 lines (63 loc) · 1.13 KB
/
main.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
html, body {
margin: 0px;
width: 100%;
height: 100%;
}
header {
background-color: grey;
height: 28px;
background: linear-gradient(to bottom, #ffffff, #e0e0e0);
display: flex;
font-family: sans-serif;
font-weight: bold;
font-size: 20px;
border-bottom: 2px solid #000;
}
.inheader {
margin: auto;
}
.leftdiv {
width: 248px;
height: calc(100% - 30px);
background-color: green;
float: left;
background: linear-gradient(to top, #ffffff, #e0e0e0);
border-right: 2px solid #000;
}
.rightdiv {
width: calc(100% - 250px);
height: calc(100% - 30px);
float: right;
background: linear-gradient(to top, #ffffff, #e0e0e0);
}
.outdiv {
width: 100%;
height: 100%;
display: flex;
padding: 0px;
}
.indiv {
width: auto;
height: auto;
margin: auto;
}
.playerInfo {
margin: 15px 0px 0px 0px;
width: 100%;
height: 30px;
}
.playerName {
width: 50%;
float: left;
text-align: center;
}
.playerScore {
width: 50%;
float: right;
text-align: center;
}
#roundDiv {
width: 100%;
font-size: 28px;
text-align: center;
}