forked from team62/team62.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
87 lines (77 loc) · 1.37 KB
/
css.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
body {
font-family:'Roboto', sans-serif;
}
.teamname {
font-family:'Roboto', sans-serif;
font-size: 18px;
font-weight: bold;
z-index: 2;
text-align: center;
}
td.red {
background-color: rgba(255, 0, 0, 0.5);
}
td.yellow {
background-color: rgba(255, 255, 0, 0.5);
}
td.blue {
background-color: rgba(0, 0, 255, 0.5);
}
td.victory {
background-color: rgba(0, 255, 0, 0.5);
}
td.tie {
background-color: rgba(0, 255, 255, 0.5);
}
a:link {
text-decoration: none;
color: #073395;
}
a:visited {
text-decoration: none;
color: #073395;
}
a:hover {
text-decoration: none;
color: #073395;
}
a:active {
text-decoration: none;
color: #073395;
}
.headercontainer {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
.container {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
.flex-item {
background: rgb(198, 21, 21);
padding: 5px;
width: 200px;
height: 150px;
margin-top: 10px;
line-height: 150px;
color: white;
font-weight: bold;
font-size: 12px;
text-align: center;
}