forked from DarrylMK/MarketPlace-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpw.css
56 lines (48 loc) · 1.03 KB
/
pw.css
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
background: url(backgroundsign.png);
}
.form-container {
display: flex;
height: 98vh;
width: 100%;
justify-content: center;
align-items: center;
}
.form-container .form-wrap {
border-radius: 7px;
background: #fff;
width: 40%;
padding: 15px 20px;
}
.form-container .form-wrap h2 {
margin: 0px 0px 20px 0px;
text-align: center;
}
.form-container .form-wrap .form-box input[type="text"] {
margin: 0px 20px 20px 0px;
padding: 3px 8px;
border-radius: 7px;
border: 1px solid #353535;
width: 100%;
text-align: center;
}
.form-container .form-wrap .form-submit {
display: flex;
justify-content: center;
}
.form-container .form-wrap .form-submit input[type="submit"] {
padding: 8px 14px;
margin: 0px 0px 20px 0px;
border: none;
border-radius: 2px;
background: #353535;
color: #fff;
font-weight: 800;
font-size: 19px;
}