-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (119 loc) · 2.16 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
display: flex;
flex-direction: column;
justify-content: center;
font-family: 'Arial', sans-serif;
background:linear-gradient(to right, aquamarine, rgb(198, 228, 198));
background-size: cover;
}
header{
text-align: center;
align-items: center;
justify-content: center;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
nav li {
display: inline-block;
margin-right: 15px;
}
nav a {
text-decoration: none;
padding: 8px 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
a:hover{
background-color: gold;
}
h2{
text-align: center;
}
.cadre{
background-color: rgb(19, 18, 18);
width: 33.33%;
padding: 1vh;
border-radius: 15px;
margin: 0 auto;
margin-top: 3%;
padding-left: 1%;
color: white;
}
.formulaire{
display: flex;
flex-direction: column;
grid-template-columns: 1fr;
grid-gap: 30px;
}
input{
background: rgb(19, 18, 18);
color: white;
}
input:invalid{
border: 1px solid red;
}
::placeholder{
color: gray;
}
.butt{
background-color: azure;
width: 140px;
height: 30px;
color: black;
}
.boiteAboutton{
text-align: center;
align-items: center;
justify-content: space-between;
margin-top: 30px;
margin-bottom: 30px;
display: flex;
margin-left: 100px;
margin-right: 100px;
}
.restri{
font-size: 14px;
color: #666;
margin-top: 0;
}
.choixJeu{
padding: 1%;
margin: 1%;
height: 350px;
}
select{
width: 180px;
}
.boiteAbouttonJeu{
text-align: center;
align-items: center;
justify-content: space-between;
}
.imageChoix{
width: 97%;
height: 300px;
padding: 1%;
margin-top: 1rem;
}
/* mdp strength */
#strength-indicator {
width: 620px;
/* Ajustez la largeur selon vos besoins */
height: 30px;
/* Ajustez la hauteur selon vos besoins */
}
.faible {
background-color: red;
background-image: url('chemin/vers/image-faible.png');
}
.moyen {
background-color: orange;
background-image: url('chemin/vers/image-moyen.png');
}
.fort {
background-color: green;
background-image: url('chemin/vers/image-fort.png');
}