-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 950 Bytes
/
styles.css
File metadata and controls
68 lines (57 loc) · 950 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
62
63
64
65
66
67
68
* {
margin: 0;
padding: 0;
}
body {
background-color: #f2f2f2;
font-family: "Helvetica", sans-serif;
}
main {
margin-top: 100px;
display: flex;
justify-content: center;
}
.container {
min-width: 40%;
max-width: 600px;
background-color: #ffffff;
display: flex;
flex-direction: column;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
button {
background-color: #4caf50;
color: #ffffff;
padding: 0.8rem 0;
border: none;
cursor: pointer;
font-size: 1.5rem;
text-transform: uppercase;
}
button:hover {
background-color: gray;
color: #000;
}
h1 {
text-align: center;
padding: 1rem 0;
}
p {
padding: 1rem 0 ;
}
label {
padding: 1rem 0 ;
display: block;
}
input {
margin-top: 0.5rem;
height: 1.5rem;
width: 100%;
display: block;
}
h3 {
padding: 1rem 0;
margin-top: 10px;
}