-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathexploits.css
124 lines (107 loc) · 2 KB
/
exploits.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
body {
font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #626880,#99d1db);
background-attachment: fixed;
min-height: 100vh;
color: #fff;
display: flex;
flex-direction: column;
opacity: 0;
transition: opacity 1s ease-in-out;
}
body.loaded {
opacity: 1;
}
.header {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
transition: opacity 1s ease-in-out;
}
.header.visible {
opacity: 1;
}
main {
flex: 1;
display: flex;
flex-direction: column;
}
.content-container {
flex: 1;
padding: 2rem 0;
}
.exploit-card {
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: none; /* border for mem card fix cuz it broke lol */
color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s ease-in-out;
}
.exploit-card.visible {
opacity: 1;
}
.modal-content {
background-color: rgba(0, 0, 0, 0.85);
color: #fff;
border: none;
opacity: 0.9;
transition: opacity 1s ease-in-out;
}
.modal-content.visible {
opacity: 1;
}
.modal-header {
border-bottom: none;
}
.modal-body {
padding: 1rem;
}
.exploit-card:hover {
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.tilt-card {
transform-style: preserve-3d;
perspective: 1000px;
transition: transform 0.2s;
}
.btn-outline-light {
border-color: #fff;
color: #fff;
}
.btn-outline-light:hover {
background-color: #fff;
color: #333;
}
.btn-white-bg {
background-color: #fff;
color: #333;
}
.btn-white-bg:hover {
background-color: #eee;
}
#draggable-cards-container {
display: flex;
flex-wrap: wrap;
}
.col {
cursor: move;
user-select: none;
margin-bottom: 1rem;
}
.draggable-mirror {
opacity: 0.8;
}
.draggable--over {
border: 2px dashed #000;
}
canvas {
position: fixed;
top: 0;
left: 0;
z-index: 8888;
pointer-events: none;
}