-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
84 lines (78 loc) · 1.21 KB
/
form.css
File metadata and controls
84 lines (78 loc) · 1.21 KB
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
80
81
82
83
84
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@font-face {
font-family: "Poppins";
src: url(Poppins/Poppins-Light.ttf);
}
body {
background-color: rgb(39, 39, 39);
color: white;
font-family: "Poppins";
display: grid;
place-items: center;
max-width: 1600px;
margin-top: 50px;
width: 100%;
font-size: 18px;
}
label {
display: block;
}
input {
width: 100%;
margin-bottom: 20px;
}
input,
button {
outline: none;
border-radius: 10px;
padding: 10px 20px;
background-color: black;
color: white;
border: 1px solid;
}
button {
font-size: inherit;
cursor: pointer;
}
button:hover {
opacity: 0.8;
}
button:active {
transform: translateY(5px);
}
/* custom */
.form-group {
padding: 20px;
background-color: black;
border-radius: 10px;
width: 450px;
}
.form-group >h1{
margin-bottom: 30px;
}
.form-list {
background-color: rgb(37, 37, 37);
margin-bottom: 30px;
padding: 20px;
border-radius: 10px;
display: none;
}
.button-list0{
display: flex;
align-items: center;
justify-content: flex-end;
}
.button-list{
display: flex;
align-items: center;
justify-content: space-between;
}
.form-list.active{
display: block;
}