-
Notifications
You must be signed in to change notification settings - Fork 77
/
style.less
114 lines (109 loc) · 2.1 KB
/
style.less
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
* {
box-sizing: border-box;
outline: none;
-webkit-tap-highlight-color: transparent;
user-select: none;
-webkit-user-drag: none;
font-family: "Jost", sans-serif;
}
body {
padding: 0;
margin: 0;
background: #252525;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
cursor: url("https://cdn-icons-png.flaticon.com/24/4610/4610128.png") 4 12,
auto;
font-family: "Jost", sans-serif;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#f00, #f0f);
clip-path: circle(30% at right 70%);
}
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#f0f, #e91e63);
clip-path: circle(20% at left 20%);
}
}
.container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
max-width: 1200px;
flex-wrap: wrap;
z-index: 10;
}
.container .card {
position: relative;
width: 280px;
height: 400px;
margin: 30px;
box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
border-radius: 15px;
background: rgba(255, 255, 255, 0.1);
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
border-top: 1px solid rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(5px);
}
.container .card .content {
padding: 16px;
text-align: center;
transform: translateY(75px);
opacity: 0.5;
transition: 0.5s;
> h2 {
position: absolute;
top: -80px;
right: 10px;
font-size: 9em;
font-weight: 600;
color: rgba(255, 255, 255, 0.08);
pointer-events: none;
}
> h3 {
font-size: 1.5em;
color: #fff;
font-weight: bold;
z-index: 1;
}
> p {
font-size: 1em;
color: #fff;
font-weight: 300;
}
> a {
position: relative;
display: inline-block;
padding: 8px 20px;
margin-top: 15px;
background: #fff;
color: #000;
text-decoration: none;
border-radius: 20px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
}
.container .card:hover .content {
cursor: pointer;
transform: translateY(0px);
opacity: 1;
}