blob: 1be71f93a986c1e11f6ab35f09c54de9823d5286 (
plain)
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
|
/*
############################################################################
# #
# Description: CSS spécifique à la page d'inscription #
# #
############################################################################
*/
.valid {
color: #338533;
}
.valid::before {
content: "\2714\0020";
}
.invalid::before {
content: "\2717\0020";
}
.deactivate {
border-color: darkgray !important;
}
.deactivate:hover {
color: black !important;
border-color: darkgray !important;
background-color: white !important;
}
#mainRegister form {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding: 1.5% 5%;
}
#mainRegister label {
width: 70%;
}
#mainRegister p {
margin: 0px;
font-style: italic;
color: #8f8f8f;
font-size: var(--fontSizeSmallLess);
}
#mainRegister div {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5em;
width: 100%;
}
#mainRegister input[type="email"],
#mainRegister input[type="password"] {
width: inherit;
}
/* MOBILE */
@media screen and (max-width: 768px) {
#mainRegister p {
display: flex;
flex-direction: column;
font-size: var(--fontSizeSmallPhone);
}
}
|