1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,111 @@ |
1 |
+html, |
|
2 |
+body { |
|
3 |
+ margin: 0; |
|
4 |
+ padding: 0; |
|
5 |
+ font-family: calibri; |
|
6 |
+} |
|
7 |
+ |
|
8 |
+ |
|
9 |
+.creer-btn { |
|
10 |
+ border-radius: 5px; |
|
11 |
+ padding: 5px 10px; |
|
12 |
+ color: white; |
|
13 |
+ cursor: pointer; |
|
14 |
+} |
|
15 |
+ |
|
16 |
+ |
|
17 |
+.creer-titre { /* div */ |
|
18 |
+ width: 100%; |
|
19 |
+ padding: 30px 0; |
|
20 |
+ text-align: center; |
|
21 |
+ font-size: 150%; |
|
22 |
+ font-weight: bold; |
|
23 |
+} |
|
24 |
+ |
|
25 |
+.creer-titre-partie { |
|
26 |
+ background-color: #8AE; |
|
27 |
+ border: 1px solid #57B; |
|
28 |
+} |
|
29 |
+ |
|
30 |
+.creer-titre-joueur { |
|
31 |
+ background-color: #EA8; |
|
32 |
+ border: 1px solid #B75; |
|
33 |
+} |
|
34 |
+ |
|
35 |
+.creer-titre-attente { |
|
36 |
+ background-color: #AE8; |
|
37 |
+ border: 1px solid #7B5; |
|
38 |
+} |
|
39 |
+ |
|
40 |
+ |
|
41 |
+.creer-liste { /* div */ |
|
42 |
+ width: 50%; |
|
43 |
+ margin: 10px auto; |
|
44 |
+} |
|
45 |
+ |
|
46 |
+.creer-liste table { |
|
47 |
+ width: 100%; |
|
48 |
+ border-spacing: 0; |
|
49 |
+} |
|
50 |
+ |
|
51 |
+.creer-liste table tr td { |
|
52 |
+ border-bottom: 1px solid #ddd; |
|
53 |
+ margin: 0px; |
|
54 |
+} |
|
55 |
+ |
|
56 |
+.creer-liste-nom { /* td */ |
|
57 |
+ font-variant-caps: small-caps; |
|
58 |
+ padding: 15px; |
|
59 |
+} |
|
60 |
+ |
|
61 |
+.creer-liste-btn { /* td */ |
|
62 |
+ text-align: right; |
|
63 |
+} |
|
64 |
+ |
|
65 |
+.creer-liste-btn-entrer { /* div */ |
|
66 |
+ display: inline-block; |
|
67 |
+ background-color: #49D; |
|
68 |
+ border: 1px solid #27E; |
|
69 |
+ margin: 10px; |
|
70 |
+} |
|
71 |
+ |
|
72 |
+.creer-liste-btn-suppr { /* div */ |
|
73 |
+ display: inline-block; |
|
74 |
+ background-color: #E65; |
|
75 |
+ border: 1px solid #C43; |
|
76 |
+} |
|
77 |
+ |
|
78 |
+ |
|
79 |
+.creer-form { |
|
80 |
+ width: 100%; |
|
81 |
+ padding: 30px 0; |
|
82 |
+ text-align: center; |
|
83 |
+} |
|
84 |
+ |
|
85 |
+.creer-form-input { |
|
86 |
+ border-radius: 5px; |
|
87 |
+ background-color: #eee; |
|
88 |
+ border: 1px solid #ddd; |
|
89 |
+ padding: 5px 10px; |
|
90 |
+ margin: 0 5px; |
|
91 |
+} |
|
92 |
+ |
|
93 |
+.creer-go-btn, |
|
94 |
+.creer-form-btn { |
|
95 |
+ background-color: #5A4; |
|
96 |
+ border: 1px solid #382; |
|
97 |
+} |
|
98 |
+ |
|
99 |
+.creer-go { |
|
100 |
+ width: 200px; |
|
101 |
+ margin: 20px auto; |
|
102 |
+ text-align: center; |
|
103 |
+} |
|
104 |
+ |
|
105 |
+ |
|
106 |
+.creer-titre-retour { |
|
107 |
+ display: inline-block; |
|
108 |
+ background-color: #666; |
|
109 |
+ border: 1px solid #333; |
|
110 |
+ margin-right: 15px; |
|
111 |
+} |