-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathUI PAGE harshit.css
52 lines (49 loc) · 927 Bytes
/
UI PAGE harshit.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
* {
box-sizing: border-box;
}
body{
background: black;
margin: 0px;
}
#back{
display: flex;
justify-content: center;
align-items: center;
width: 350px;
padding: 8% 0 0;
margin: auto;
}
#box{
position: relative;
display: flex;
align-items: center;
margin: 0 auto 100px;
padding: 45px;
height: 500px;
width: 350px;
background: grey;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
flex-direction: column;
}
#form{
top: 50px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size:20px;
color:white;
}
input{
width: 250px;
height: 10px;
margin: 10px;
padding: 20px;
font-size: 20px;
border: none;
}
button{
margin-top: 50px;
height:50px;
width:100px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size:20px;
color:rgb(80, 80, 80);
}