-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (51 loc) · 893 Bytes
/
styles.css
File metadata and controls
61 lines (51 loc) · 893 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
background-color: #f2f2f2;
font-family: "Helvetica", sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
main {
max-width: 40%;
width: 400px;
margin-top: 100px;
background-color: #ffffff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
padding: 20px 100px;
display: flex;
border-radius: 10px;
flex-direction: column;
}
h1 {
padding: 1rem;
text-align: center;
}
label {
padding: 0.6rem;
text-align: center;
font-size: 1rem;
font-weight: 700;
}
input {
font-size: 1rem;
}
button {
margin: 1rem auto;
padding: 10px;
background-color: #007bff;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
}
button:hover {
background-color: #007baa;
}
h3 {
padding: 10px;
text-align: center;
}