|
@@ -24,6 +24,59 @@ header {
|
24
|
24
|
padding-bottom: 10px;
|
25
|
25
|
}
|
26
|
26
|
|
|
27
|
+section#responsive-navbar img {
|
|
28
|
+ margin-right:10px;
|
|
29
|
+ margin-top:8px;
|
|
30
|
+ float:right;
|
|
31
|
+ height: 1.3em;
|
|
32
|
+}
|
|
33
|
+
|
|
34
|
+section#responsive-navbar {
|
|
35
|
+ display: none;
|
|
36
|
+ margin-top:0px;
|
|
37
|
+ color: white;
|
|
38
|
+ background-color: #7e19ff;
|
|
39
|
+ font-size: 25px;
|
|
40
|
+}
|
|
41
|
+
|
|
42
|
+section#responsive-navbar ul {
|
|
43
|
+ margin-top:0px;
|
|
44
|
+ list-style-type:none;
|
|
45
|
+ padding-left:0px;
|
|
46
|
+}
|
|
47
|
+
|
|
48
|
+section#responsive-navbar ul li {
|
|
49
|
+ height: 2em;
|
|
50
|
+ line-height: 2em;
|
|
51
|
+ vertical-align: middle;
|
|
52
|
+ text-align:center;
|
|
53
|
+ width:100%;
|
|
54
|
+}
|
|
55
|
+
|
|
56
|
+section#responsive-navbar ul li a {
|
|
57
|
+ width:100%;
|
|
58
|
+}
|
|
59
|
+
|
|
60
|
+section#responsive-navbar ul li.play {
|
|
61
|
+ background: #ff9619;
|
|
62
|
+}
|
|
63
|
+
|
|
64
|
+section#responsive-navbar ul li.play:hover {
|
|
65
|
+ background: #ffab19;
|
|
66
|
+}
|
|
67
|
+
|
|
68
|
+section#responsive-navbar ul li:hover, section#responsive-navbar ul li.current {
|
|
69
|
+ background: #9556f9;
|
|
70
|
+}
|
|
71
|
+
|
|
72
|
+section#responsive-navbar ul li:first-child, section#responsive-navbar ul li:first-child:hover {
|
|
73
|
+ background-color: #7e19ff;
|
|
74
|
+ background-image: url('../assets/burger-menu.png');
|
|
75
|
+ background-size: 25px;
|
|
76
|
+ background-repeat: no-repeat;
|
|
77
|
+ background-position: 10px, 50%;
|
|
78
|
+}
|
|
79
|
+
|
27
|
80
|
section#navbar {
|
28
|
81
|
color: white;
|
29
|
82
|
background-color: #7e19ff;
|
|
@@ -43,8 +96,8 @@ section#navbar li:first-child a {
|
43
|
96
|
|
44
|
97
|
section#navbar a {
|
45
|
98
|
padding-top:17px;
|
46
|
|
- padding-left:50px;
|
47
|
|
- padding-right:50px;
|
|
99
|
+ padding-left:30px;
|
|
100
|
+ padding-right:30px;
|
48
|
101
|
padding-bottom:18px;
|
49
|
102
|
margin-right: 10px;
|
50
|
103
|
}
|
|
@@ -112,3 +165,21 @@ section#page p {
|
112
|
165
|
article#jouer {
|
113
|
166
|
margin:auto;
|
114
|
167
|
}
|
|
168
|
+
|
|
169
|
+@media all and (max-width: 799px) {
|
|
170
|
+ section#responsive-navbar {
|
|
171
|
+ display: block;
|
|
172
|
+ }
|
|
173
|
+ section#navbar {
|
|
174
|
+ display: none;
|
|
175
|
+ }
|
|
176
|
+}
|
|
177
|
+
|
|
178
|
+@media all and (min-width: 800px) {
|
|
179
|
+ section#responsive-navbar {
|
|
180
|
+ display: none;
|
|
181
|
+ }
|
|
182
|
+ section#navbar {
|
|
183
|
+ display: block;
|
|
184
|
+ }
|
|
185
|
+}
|