forked from grevory/ultimate-scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
101 lines (82 loc) · 1.39 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
93
94
95
96
97
98
99
100
101
body {
background: url('img/field1.jpg');
background-size: 100%;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.displayed-scores {
text-align: center;
}
.our-name, .their-name {
width: 60%;
margin: 10px auto;
cursor: pointer;
}
.team-score {
width: 50%;
float: left;
}
.scoreboard-back {
background: #333;
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0);
/* RGBa with 0.6 opacity */
background: rgba(0, 0, 0, 0.9);
filtesr:alpha(opacity=90); /* For IE8 and earlier */
margin: 0 5% 5% 5%;
color: #fff;
}
.round {
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
border-radius: 10%;
}
.displayed-score {
width: 80%;
margin: 0 auto;
background: #000;
font-weight: 800;
-webkit-transform-origin: 0% 100%;
-moz-transform-origin: 0% 100%;
-o-transform-origin: 0% 100%;
transform-origin: 0% 100%;
white-space: nowrap;
}
.score-actions {
text-align: center;
}
.score-actions button {
padding: 0.5em;
margin: 1.5em 0;
border: 0;
color: #fff;
}
.score-actions .goal {
background: #2DC425;
font-weight: bold;
}
.score-actions .fix {
background: none;
}
#team-name-modal input {
display: inline-block;
}
/*.modal-open .team-name-modal-override {
width: 30%;
}*/
.text-align-right {
text-align: right;
}
.text-align-left {
text-align: left;
}
.text-align-center {
text-align: center;
}
.hide {
display: none;
}