-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (93 loc) · 1.9 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
html,
body {
margin: 0;
padding: 0;
background-color: rgb(0, 0, 0);
font-family: "IBM Plex Mono", serif;
font-weight: 100;
font-style: normal;
text-align: center;
}
.no-margin {
margin: 0 !important;
}
canvas {
display: inline-block;
}
@media (max-width: 900px) {
#canvas-container {
left: 0px;
border: 1px solid black;
transform: scale(0.5); /* Réduit la taille visuelle du canvas de moitié */
transform-origin: 0 0; /* Définit l'origine de la transformation en haut à gauche */
}
}
.btn-retro {
display: block;
width: 90%;
padding: 15px;
margin: 0em;
font-size: 20px;
color: rgb(228, 228, 228);
text-transform: none;
text-decoration: none;
transition: all 0.1s ease-in-out;
}
.btn-retro:hover {
background-color: rgb(195, 223, 250);
color: #111;
box-shadow: 2px 2px 0px rgb(28, 12, 54);
}
.retro-header {
color: rgb(252, 254, 255);
font-weight: 200;
font-size: 23px;
width: 100%;
margin-top: 0px;
max-height: min-content;
max-width: none;
margin: 5px auto;
border: 1px solid rgb(32, 32, 32);
background-color: #000000;
}
.retro-menu {
display: inline-block;
color: aliceblue;
align-content: center;
width: 90%;
max-width: none;
margin-bottom: 0em;
border: 1px solid rgb(34, 34, 34);
box-shadow: 4px 4px 0px rgb(24, 24, 24);
background-color: #000000;
border-collapse: collapse;
/* Enlever l'espacement entre les cellules */
}
.arrow {
font-size: 50px;
/* Taille de l'icône */
display: block;
margin: 0 0;
/* Centre horizontalement */
text-align: center;
color: #4d4c4c;
/* Couleur de l'icône, peut être modifiée */
}
.name-cell {
text-align: center;
font-weight: bold;
}
.lang-cell {
text-align: right;
}
.flag {
flex: auto;
width: 16px;
height: auto;
margin-left: 10px;
cursor: pointer;
filter: drop-shadow(2px 2px 0px rgb(65, 65, 65));
}
.flag:hover {
transform: scale(1.1);
}