-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.css
52 lines (52 loc) · 930 Bytes
/
page2.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
body{
background: linear-gradient(to right,pink,lightblue);
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.login{
height: 450px;
width: 350px;
background-color: aliceblue;
margin: auto;
margin-top: 150px;
}
.login h1{
margin-top: 30px;
text-align: center;
}
form{
padding: auto;
margin: auto;
}
#username{
display: block;
margin: 20px;
margin-top: 10px;
margin-left: 10px;
}
#password{
display: block;
margin: 20px;
margin-top: 10px;
margin-left: 10px;
}
input{
height: 20px;
width: 250px;
border-style: outset;
box-shadow: 2px black;
}
.forget{
text-align: right;
font-size: small;
}
#signin{
text-align: center;
}
#btn{
color: black;
background-color: rgb(248, 110, 133);
height: 30px;
width: 100px;
border-radius: 50px;
margin-left: 130px;
}