-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
56 lines (49 loc) · 901 Bytes
/
form.css
File metadata and controls
56 lines (49 loc) · 901 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
display: flex;
width: 100%;
height: 100vh;
margin: 20px;
justify-content: center;
align-items: center;
background-color: white;
}
.container {
margin: 20px;
padding: 20px;
justify-content: center;
align-items: center;
background: whitesmoke;
border-radius: 15px;
}
.container h1, h5 {
margin: 20px;
}
.container input {
width: 90%;
padding: 10px;
margin: 10px;
border: 1px solid red;
outline: none;
border-radius: 10px;
}
.container a {
text-decoration: none;
}
.container button {
width: 90%;
padding: 10px;
margin: 10px;
border: none;
border-radius: 15px;
background-color: red;
color: white;
}
.container p {
text-align: center;
margin: 10px;
}