-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
79 lines (69 loc) · 1.23 KB
/
index.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
*,
*::before,
*::after {
box-sizing: 0;
margin: 0;
padding: 0;
}
body {
background-image: linear-gradient(90deg, #64b3f4, #c2e59c);
font-family: 'Cascadia code';
font-size: 1rem;
color: #444;
}
.container {
text-align: center;
padding-top: 5rem;
}
.formulaire {
display: flex;
align-items: center;
flex-direction: column;
}
input {
font-family: 'Cascadia code';
font-size: 1rem;
font-style: italic;
padding: 1rem;
margin: 0.2rem;
}
[type="email"]:active,
[type="email"]:focus,
[type="password"]:active,
[type="password"]:focus {
outline: 0;
border: 2px solid #007bff;
}
[type="email"],
[type="password"],
[type="submit"] {
display: inline-block;
-webkit-appearance: none;
padding: .5rem 1rem;
font-size: 1rem;
border: 2px solid #ccc;
border-radius: 4px;
}
[type="submit"] {
cursor: pointer;
background: #007bff;
color: white;
border: 2px solid #007bff;
margin: 0.5rem;
font-family: 'Cascadia code';
}
span {
color: red;
font-style: italic;
font-size: 0.8rem;
text-align: left;
}
div {
text-align: center;
}
a {
text-decoration: underline;
font-style: italic;
text-align: center;
color: black
}