-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (61 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (61 loc) · 1.26 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-color: #202025;
color: #ffffff;
padding: 0;
margin: 0;
font-family: 'Helvetica';
font-size: 22px;
}
#cards-holder {
border: auto;
display: flex;
gap: 10px;
position:absolute;
height: 300px;
width: 96%;
left: 2%;
}
.card {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
color: aliceblue;
flex-direction: column;
position: relative;
width: 50vw;
padding: 10;
}
.card::before {
background: radial-gradient(1200px circle at var(--mouse-x) var(--mouse-y),
rgba(255, 255, 255, 0.1),
transparent 40%);
z-index: 3;
}
.card:hover::before {
opacity: 1;
}
#cards:hover > .card::after {
opacity: 1;
}
.card > .card-content {
background-color: var(--card-color);
border-radius: inherit;
display: flex;
flex-direction: column;
flex-grow: 1;
inset: 1px;
padding: 10px;
position: absolute;
z-index: 2;
}
.card::before,
.card::after {
border-radius: inherit;
content: "";
height: 100%;
left: 0px;
opacity: 0;
position: absolute;
top: 0px;
transition: opacity 650ms;
width: 100%;
}