-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (94 loc) · 2.37 KB
/
style.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
/* color: white; */
}
.main{
height: 100vh;
width: 100vw;
/* background-color: #000; */
/* background: linear-gradient(to right top, #8a72f7, #8077fb, #929ef0 , #8995f2, #a1acf7); */
position: absolute;
/* background-image: url(IMG_20231116_204855_520.png); */
background-repeat: no-repeat;
background-size: 100% 100vh;
filter: blur(10px);
z-index: -1;
display: flex;
align-items: center;
justify-content: center;
}
.main-body{
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
text-align: center;
height: 80%;
width: 75%;
position: absolute;
z-index: 5;
background: linear-gradient(to right bottom, #8a72f7, #8077fb, #929ef0 , #7381ea, #4759d4);
mix-blend-mode: normal;
border-radius: 30px;
border-radius: 40px;
-webkit-backdrop-filter: blur(50px);
backdrop-filter: blur(50px);
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
text-shadow: 0px 4px 4px rgba(255, 255, 255,0.25);
/* margin: 70px 530px; */
margin: 70px 215px;
}
h1{
font-weight: 700;
}
h1 span{
color: rgb(248, 248, 17);
font-weight: 700;
text-decoration: underline;
text-underline-position: under;
}
.display img{
width: 30px;
cursor: pointer;
}
.display input{
border: 0;
outline: 0;
font-size: 20px;
}
.main-body button img{
width: 28px;
margin-right: 10px;
/* filter: invert(1); */
}
.main-body button{
border: 0;
outline: 0;
background-color: rgb(221, 217, 2);
color: #000;
font-size: 18px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
padding: 10px 25px;
border-radius: 35px;
cursor: pointer;
}
.display{
width: 45%;
margin-top: 30px;
margin-bottom: 30px;
background-color: #fff;
color: #333;
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 28px;
/* padding-top: 5px;
padding-bottom: 5px; */
border-radius: 19px;
}