-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (69 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
65
66
67
68
69
70
71
72
73
74
75
*{
font-family: sans-serif;
margin: 0px;
}
body {
font-family: Arial, sans-serif;
}
.navbar {
background-color: #333;
padding: 10px;
text-align: center;
}
.password-status {
color: white;
font-size: 16px;
display: inline-block; /* Pour aligner correctement */
margin-right: 20px; /* Espacement avec les liens */
}
.nav-links {
display: inline-block; /* Permet d'afficher les liens sur la même ligne */
margin: 0;
padding: 0;
list-style: none;
}
.nav-links li {
display: inline; /* Affiche les éléments de la liste en ligne */
margin: 0 10px; /* Espacement entre les liens */
}
.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s;
}
.nav-links a:hover {
color: #4CAF50; /* Change la couleur au survol */
}
form {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
form div {
width: 90%;
max-width: 400px;
width: 90%;
margin: 5px 0px;
color: #777;
}
.pass-holder {
width: 100%;
}
.pass-holder label {
display: block;
margin: 10px 0px;
}
.pass-holder input {
width: 100%;
display: block;
padding: 10px;
border: 2px solid #0088FF;
border-radius: 5px;
}
.txt {
color: #000;
font-family: cursive;
}