-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (78 loc) · 1.36 KB
/
styles.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
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);
.teamsBox {
box-sizing: border-box;
width: 90%;
height: 15%;
display: flex;
justify-content: space-between;
margin: 1em;
}
.team {
position: relative;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 16px;
font-weight: bold;
flex: 1 0 0px;
}
.day, .mapName {
text-align: center;
font-size: 18px;
}
.teamName, .score {
font-weight: bold;
font-size: 36px;
}
.hour {
margin-top: 15px;
font-weight: bold;
font-size: 36px;
}
.reportSeparator {
padding-bottom: 25px;
}
*, *:before, *:after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url(paper.jpg);
font-family: "Courier New", Courier;
color: #444444;
font-size: 10pt;
background-repeat: no-repeat;
background-size: cover;
}
A:link {
color: #610000;
text-decoration: underline;
}
A:visited {
color: #610000;
text-decoration: underline;
}
table {
margin-top: 2px;
margin-bottom: 35px;
width: 90%;
border-spacing:0 5px;
}
th {
font-weight: bold;
border-bottom: 1px solid #000000;
text-align: center;
}
td {
text-align: center;
}
.playerNames {
width: 15%;
text-align: left;
}
.streaks {
width: 15%;
text-align: left;
}