-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
46 lines (45 loc) · 912 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
html,body{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.box{
font-size: 32px;
width: 100vw;
height: 100vh;
color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.box>h4{
font-size: 18px;
font-weight: 600;
}
.box>#email>input{
width: 250px;
padding: 8px 4px;
font-size: 14px;
border-radius: 10px;
}
.box>#pass>input{
width: 250px;
padding: 8px 4px;
font-size: 14px;
border-radius: 10px;
}
.box>button{
width: 100px;
margin-top: 18px;
padding:8px;
border-radius:10px ;
cursor: pointer;
}