-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (102 loc) · 2.59 KB
/
style.css
File metadata and controls
107 lines (102 loc) · 2.59 KB
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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: Verdana; }
body {
background-color: #f1f1f1; }
.popup-container {
display: none;
width: 1000px;
height: 1000px; }
.popup {
width: 600px;
height: 200px;
z-index: 1000;
margin: 0 auto;
background-color: #fff;
position: absolute; }
.popup div {
float: left; }
.popup div * {
float: left; }
.round {
width: 235px;
overflow: hidden;
float: left; }
.round:last-child .lines {
display: none; }
.round.one .matches .match {
padding: 10px 0; }
.round.one .matches .match.bye {
padding: 22px 0; }
.round.one .lines .corner {
height: 71px;
margin-top: 34px; }
.round.one .lines .connector {
margin-top: 69px; }
.round.two .matches .match {
padding: 45px 0; }
.round.two .lines .corner {
height: 141px;
margin-top: 69px; }
.round.two .lines .connector {
margin-top: 139px; }
.round.three .matches .match {
padding: 115px 0; }
.round.three .lines .corner {
height: 281px;
margin-top: 139px; }
.round.three .lines .connector {
margin-top: 279px; }
.round.four {
width: 195px; }
.round.four .matches .match {
padding: 255px 0; }
.round.four .lines .corner {
height: 281px;
margin-top: 139px; }
.round.four .lines .connector {
margin-top: 279px; }
.group .matches {
float: left; }
.group .matches .match {
width: 195px;
color: #333;
cursor: pointer; }
.group .matches .match .player:first-child {
margin-bottom: -1px; }
.group .matches .match .player:last-child {
margin-bottom: 1px; }
.group .matches .match .player {
height: 25px;
font-size: 13px;
background-color: #fff;
border: solid 1px #cbcbcb; }
.group .matches .match .player.one {
margin-bottom: -1px; }
.group .matches .match .player.two {
margin-bottom: 1px; }
.group .matches .match .player.loser .name {
color: #cbcbcb; }
.group .matches .match .player .name {
float: left;
padding-left: 10px;
line-height: 23px; }
.group .matches .match .player .score {
width: 25px;
float: right;
line-height: 19px;
margin: 2px 0;
border-left: solid 1px #cbcbcb;
text-align: center; }
.group .lines div {
float: left; }
.group .lines .corner {
width: 20px;
border-top: solid 1px #cbcbcb;
border-right: solid 1px #cbcbcb;
border-bottom: solid 1px #cbcbcb; }
.group .lines .connector {
width: 20px;
border-bottom: solid 1px #cbcbcb; }