-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 1 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
/* Style pour la page de connexion */
body {
background-color: blue;
}
#login-form {
background-color: purple;
border-radius: 20px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
padding: 40px;
margin: 50px auto;
max-width: 500px;
text-align: center;
}
#login-form h2 {
font-size: 2em;
margin-bottom: 20px;
}
#login-form form {
display: inline-block;
text-align: left;
}
#login-form label {
display: block;
font-size: 1.2em;
margin-bottom: 10px;
color: purple;
}
#login-form input[type="text"],
#login-form input[type="password"] {
padding: 10px;
border: none;
border-radius: 20px;
background-color: #f2f2f2;
width: 100%;
margin-bottom: 20px;
font-size: 1.2em;
color: #555;
}
#login-form input[type="submit"] {
background-color: #333;
color: #fff;
border: none;
border-radius: 20px;
padding: 10px 20px;
font-size: 1.2em;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
#login-form input[type="submit"]:hover {
background-color: red;
}