blob: 0b8aa99d99a1626f4b6ad5e22ce45883382d3db0 (
plain)
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
|
// Place all the styles related to the tournaments controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
@import "colors";
#players-needed {
text-align: center;
font-style: italic;
}
#tournament-side-params {
background: none repeat scroll 0 0 rgba(0,0,0,0.5);
border-radius: 5px;
float: right;
font-size: 7px;
padding: 10px;
p {
font-size: 10px;
margin-bottom: 5px;
}
}
ul#tournament-users {
list-style: none;
padding: 0;
margin: 0;
li {
// Make the bullet green, but the text white
padding-left: 1em;
text-indent: -.7em;
&:before {
content: "• ";
color: #10A010;
}
color: white;
}
}
div.leave-buttons {
margin-top: 50px;
form {
display: inline;
}
}
|