-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
158 lines (137 loc) · 3.26 KB
/
style.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body
{
font-family: arial, helvetica, sans-serif;
width:80%;
min-width: 1200px;
margin:0px auto;
background-color: #EFEFEF;
}
.box-content label
{
float: left;
width:35%;
}
.input-text
{
float: left;
width: 59%;
}
img
{
border-style:none;
}
input
{
margin: 2px 0;
}
#content
{
height:100%;
width:100%;
margin:10px;
border-radius: 2px;
background-color:#FFFFFF;
box-shadow: rgba(0, 0, 0, 0.296875) 0px 0px 20px 0px;
}
#content-spacer
{
padding: 2%;
}
.spacer
{
height: 20px;
}
.box
{
border: 3px solid #623A92;
border-radius: 5px;
}
.box-header
{
font-weight: bold;
text-align: center;
padding: 10px;
border-bottom: 3px solid #623A92;
color:#623A92;
background-color:#E3D7F4;
}
.box-content
{
padding: 5px;
}
#inscription
{
float:left;
width: 49%;
}
span.label {
margin-left: 5px;
margin-right: 20px;
}
input#subscribe
{
margin-top:15px;
width:100%;
height:40px;
font-size:larger;
}
#principe
{
float:right;
width: 49%;
height:100%;
}
table#listing {
margin:1%;
border-collapse:collapse;
border: 1px solid #623A92;
width:98%;
}
/* Manage */
tr.player:hover > td {
background-color: #E3D7F4;
}
/* !Manage */
.message
{
height: 20px;
padding-left: 5px;
}
.info
{
border-bottom: 1px solid #4EBD4D;
color: #2A7D29;
background: #E5FCE6;
background: -moz-linear-gradient(top, #E5FCE6 0%, #D1E8D2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E5FCE6), color-stop(100%,#D1E8D2));
background: -webkit-linear-gradient(top, #E5FCE6 0%,#D1E8D2 100%);
background: -o-linear-gradient(top, #E5FCE6 0%,#D1E8D2 100%);
background: -ms-linear-gradient(top, #E5FCE6 0%,#D1E8D2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5fce6', endColorstr='#d1e8d2',GradientType=0 );
background: linear-gradient(top, #E5FCE6 0%,#D1E8D2 100%);
}
.warning
{
background: #FFFFDF;
background: -moz-linear-gradient(top, #FFFFDF 0%, #FFFED6 100%);
background: -webkit-gradient(linear, left top, left bottom,color-stop(0%,#FFFFDF), color-stop(100%,#FFFED6));
background: -webkit-linear-gradient(top, #FFFFDF 0%, #FFFED6 100%);
background: -o-linear-gradient(top, #FFFFDF 0%, #FFFED6 100%);
background: -ms-linear-gradient(top, #FFFFDF 0%, #FFFED6 100%);
background: linear-gradient(top, #FFFFDF 0%, #FFFED6 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFDF', endColorstr='#FFFED6',GradientType=0 ); /* IE6-9 */
border-bottom: 1px solid #FFD20F;
}
.error
{
background: #FFF2EB; /* Old browsers */
background: -moz-linear-gradient(top, #FFF2EB 0%, #FFE5D9 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom,color-stop(0%,#FFF2EB), color-stop(100%,#FFE5D9)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #FFF2EB 0%, #FFE5D9 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #FFF2EB 0%, #FFE5D9 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #FFF2EB 0%, #FFE5D9 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF2EB', endColorstr='#FFE5D9',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #FFF2EB 0%, #FFE5D9 100%); /* W3C */
border-bottom: 1px solid #FFAD8A;
color:#B53300;
}