-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (114 loc) · 2.17 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
*{
margin : 0;
padding : 0;
box-sizing : border-box;
font-family : 'Poppins', sans-serif;
}
body {
display : flex;
align-items : center;
justify-content : center;
min-height : 100vh;
background : linear-gradient(45deg, #00a67f, #ca96f6);
}
.card {
width : 200px;
height : 200px;
/* border : 1px solid red; */
overflow : hidden;
border-radius : 30px;
transition : 1s;
}
.background{
position : relative;
width : 100%;
height : 100%;
background : radial-gradient(circle at 100% 110%, #fdeb82, #f78fad);
}
.logo{
position : absolute;
right : 50%;
bottom : 50%;
color : white;
font-size : 1.5rem;
transform : translate(50%, 50%);
transition : 0.5s ease-in-out;
}
.box {
position : absolute;
padding : 10px;
text-align : right;
background : #ffffff63;
border-top : 2px solid white;
border-right : 1px solid white;
border-radius : 10% 13% 42% 0%/10% 12% 75% 0%;
box-shadow : #6464645d -7px 7px 29px 0;
transition : 1s ease-in-out;
overflow : hidden;
cursor : pointer;
}
.box i{
color : white;
}
.box::before{
content : "";
position : absolute;
inset : 0;
transition : 0.5s ease-in-out;
opacity : 0;
}
.box1{
width : 70%;
height : 70%;
bottom : -70%;
left : -70%;
transition-delay : 0s;
}
.box1::before{
background : linear-gradient(60deg, #bc3d2f, #a16bfe);
}
.box2{
width : 50%;
height : 50%;
bottom : -50%;
left : -50%;
transition-delay : 0.2s;
}
.box2::before{
background : linear-gradient(60deg, #5583ee, #41d8dd);
}
.box3{
width : 30%;
height : 30%;
bottom : -30%;
left : -30%;
transition-delay: 0.4s;
}
.box3::before{
background : linear-gradient(60deg, #6de195, #c4e759);
}
.box4{
width : 10%;
height : 10%;
bottom : -10%;
left : -10%;
transition-delay : 0.6s;
}
.box:hover .icon i{
filter : drop-shadow(0 0 5px white);
}
.box:hover::before {
opacity : 1;
}
/* hover */
.card:hover{
transform : scale(1.1);
}
.card:hover .box{
bottom : -1px;
left : -1px;
}
.card:hover .logo{
bottom : 40px;
right : 40px;
}