forked from vigkrishna/Stocky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
112 lines (94 loc) · 2.04 KB
/
signup.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500&family=Inter:wght@300;500;700&family=Oswald:wght@700&family=Playfair+Display:ital,wght@0,800;1,400&family=Poppins:ital,wght@0,300;1,400;1,500&family=Rajdhani:wght@500&family=Roboto+Slab:wght@300;600&display=swap');
.wholebody {
font-family: 'Inter';
z-index: 100;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
body {
font-family: Arial, sans-serif;
margin: 0;
width: 100vw;
height: 100vh;
padding: 0;
box-sizing: border-box;
height: 100vh;
overflow: hidden;
background: black;
}
.container {
width: 800px;
margin: 0 auto;
z-index: 100;
/* padding: 20px; */
}
form {
background-color: #ccc;
border: 1px solid #ccc;
padding: 20px;
border-radius: 30px;
}
h2 {
text-align: center;
margin-top: 0;
font-size: 50px;
}
label {
display: block;
margin-bottom: 5px;
}
.flex {
display: flex;
flex-direction: column;
gap: 20px;
}
.submit_button {
width: fit-content;
padding: 10px;
width: 100px;
font-size: 16px;
background: black;
}
a {
color: black;
text-decoration: none;
}
input[type=text],
input[type=email],
input[type=password] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
input[type=submit] {
background-color: black;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
margin-top: 10px;
}
@media only screen and (min-width: 768px) {
.container {
padding: 40px;
}
form {
padding: 40px;
}
input[type=text],
input[type=email],
input[type=password] {
width: calc(100% - 20px);
}
input[type=submit] {
width: auto;
}
}
/*# sourceMappingURL=signup.css.map */