-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
51 lines (51 loc) · 825 Bytes
/
form.css
File metadata and controls
51 lines (51 loc) · 825 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
body {
background-color: black;
box-sizing: border-box;
font-family: "Raleway", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.container {
background-color: white;
width: 25vw;
margin: 50px auto;
padding: 40px 20px;
}
h1 {
text-align: center;
color: tomato;
}
form {
border: 2px solid burlywood;
padding: 20px;
background-color: ghostwhite;
border-radius: 20px;
}
form div {
margin: 5px 0;
padding: 10px 0;
}
label {
font-weight: 500;
}
input {
padding: 10px;
height: 20px;
width: 95%;
border-radius: 5px;
border: 1px solid gray;
}
button {
background-color: tomato;
color: white;
padding: 10px 20px;
cursor: pointer;
border: 1px solid grey;
border-radius: 10px;
font-weight: 600;
width: 100%;
font-size: 16px;
}
button:hover {
opacity: 0.8;
}