-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (72 loc) · 2.12 KB
/
styles.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
/* styles.css */
#buttonContainer button {
background-color: #050e64;
border: none;
color: white;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
width: 150px; /* Largeur fixe */
height: 50px; /* Hauteur fixe */
}
#buttonContainer {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-gap: 0px;
padding: 0px;
}
#buttonContainer button:hover {
background-color: #08147a;
}
body {
background-color: black; /* Fond noir pour la page entière */
color: white; /* Texte en blanc pour le contraste avec le fond noir */
margin: 0; /* Supprime les marges par défaut du body */
font-family: Arial, sans-serif; /* Définit une police de base */
}
.InputConfigEntry {
width: 250px; /* Largeur de l'input */
padding: 5px; /* Padding interne */
font-size: 12px; /* Taille de la police */
border: 2px solid #ccc; /* Bordure par défaut */
border-radius: 10px; /* Coins arrondis */
background-color: #f9f9f9; /* Couleur de fond */
color: #333; /* Couleur du texte */
outline: none; /* Supprime l'outline par défaut */
transition: border-color 0.3s ease; /* Transition pour l'effet hover/focus */
}
.configlabel {
font-size: 14px; /* Taille de la police */
color: #ffffff; /* Couleur du texte */
margin-right: 10px; /* Marge à droite */
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Bandeau supérieur */
#bandeau-superieur {
width: 100%;
height: 50px;
background-color: #000000;
display: flex;
justify-content: center; /* Centrer horizontalement */
align-items: center; /* Centrer verticalement */
}
#bandeau-superieur button {
background-color: #f9f9f9;
border: none;
color: #050e64;
padding: 10px 20px;
font-size: 12px;
margin: 0 10px; /* Espacement entre les boutons */
border-radius: 8px;
cursor: pointer;
}
/* Contenu de la page */