-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (69 loc) · 1.51 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (69 loc) · 1.51 KB
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
body{
background-image: url(./images/Background3.jpg);
background-size: 100% 100%;
}
.conatiner{
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.box{
height: 400px;
width: 400px;
padding: 20px;
border-radius: 40px;
box-shadow: 0 0 20px white;
background-image: url(./images/Background2.jpg);
background-size: 100% 100%;
}
.box form .welcome{
text-align: center;
}
.box form .inputbox{
margin-top: 20px;
}
.box form input{
width: 80%;
height: 30px;
padding: 10px 15px 10px 45px;
border-radius: 10px;
box-shadow: 0 0 3px black;
background-color: rgba(255, 255, 255, 0.5);
/* background-image: linear-gradient(to right,rgb(0, 183, 255),rgb(0, 255, 136)); */
margin-top: 20px;
border: 0px solid black;
}
.box form input:focus , form input:hover {
border: 0px solid black;
background-color: white;
background: white;
box-shadow: 0 0 10px black;
outline: none;
}
.box form img{
height: 25px;
width: 25px;
position: absolute;
transform: translateY(33px) translateX(10px);
pointer-events: none;
}
.box button{
height: 50px;
width: 80%;
margin-top: 50px;
margin-left: 10%;
border-radius: 20px;
font-size: 20px;
letter-spacing: 3px;
font-weight: bolder;
background-color: rgb(255, 255, 255);
border: 0;
box-shadow: 0 0 5px;
}
.box button:hover{
box-shadow: 0 0 20px;
background-color: aqua;
cursor: pointer;
}