-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlove.css
77 lines (55 loc) · 1.15 KB
/
love.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-image: url(final.jpg);
background-repeat: no-repeat;
background-size: cover; /* Ensures the background image covers the entire body */
background-position: center; /* Centers the background image */
color: whitesmoke;
}
main{
width:300px;
padding:30px;
border-radius:10px;
background-color:transparent;
backdrop-filter: blur(25px);
border: 2px solid white;
display: flex;
flex-direction:column;
gap:20px;
}
input{
padding:10px;
background-color: transparent;
border:none;
border-bottom:1px solid white;
outline:none;
color:white;
font-size:20px;
color: black;
}
.mid{
display: flex;
align-items: center;
color: pink;
}
button{
padding:10px;
border-radius:25px;
border:none;
cursor:pointer;
}
i{
font-size:5rem !important;
}
::placeholder{
color:pink;
}