-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
64 lines (56 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
/* Styles pour le body */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
/* Styles pour le titre */
h1 {
font-family: 'Press Start 2P', cursive;
font-size: 48px;
text-align: center;
margin-bottom: 10px;
/* Multi-color effect */
background: linear-gradient(to right, #ff69b4, #33cc33, #66CCCC);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* style.css */
/* Police cool pour le paragraphe et le footer */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');
/* Styles pour le paragraphe */
p {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 18px;
color: green;
text-align: center;
margin-bottom: 20px;
}
/* Styles pour le canvas */
#game-canvas {
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
padding: 10px;
}
/* Styles pour le footer */
footer {
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 16px;
color: #666;
text-align: center;
margin-top: 20px;
}
/* Styles pour le conteneur du joystick */
#joystick-container {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%); /* Centrer horizontalement */
width: 80px;
height: 80px;
}