-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (108 loc) · 2.71 KB
/
Copy pathstyles.css
File metadata and controls
124 lines (108 loc) · 2.71 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
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
@import url('https://fonts.cdnfonts.com/css/minecraftia');
body {
font-family: 'Minecraftia', 'Inter', sans-serif;
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
text-rendering: auto;
letter-spacing: normal;
font-style: normal !important;
font-weight: 400;
}
h1, h2, h3, h4, h5, h6, p, span, a, div, input, button {
font-style: normal !important;
}
@keyframes fade-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-row {
from { opacity: 0; transform: translateX(-20px); }
to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in {
animation: fade-in 0.8s ease-out;
}
.animate-fade-in-delayed {
animation: fade-in 0.8s ease-out 0.2s both;
}
.fade-in-row {
animation: fade-in-row 0.5s ease-out forwards;
opacity: 0;
}
.tools-table tr:hover {
background: rgba(255, 255, 255, 0.03);
transition: all 0.3s ease;
}
.tool-link {
color: #e4e4e7;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 4px;
transition: all 0.3s ease;
position: relative;
}
.tool-link:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.22);
transform: none;
box-shadow: none;
}
.overflow-x-auto::-webkit-scrollbar {
height: 8px;
}
.overflow-x-auto::-webkit-scrollbar-track {
background: transparent;
border-radius: 8px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
border-radius: 8px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.25);
}
.fa-magnifying-glass {
opacity: 1 !important;
}
.text-mc-lime {
color: #55FF55;
text-shadow: 2px 2px 0px #002200;
}
.text-mc-orange {
color: #FFAA00;
text-shadow: 2px 2px 0px #2A1C00;
}
.text-mc-red {
color: #FF5555;
text-shadow: 2px 2px 0px #2A0000;
}
.tool-link[data-tooltip]::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%) translateY(10px);
margin-bottom: 10px;
padding: 8px 12px;
background-color: #18181b;
color: #e4e4e7;
border: 1px solid #3f3f46;
border-radius: 6px;
font-size: 0.8rem;
white-space: normal;
max-width: 250px;
width: max-content;
z-index: 100;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
pointer-events: none;
opacity: 0;
visibility: hidden;
transition: all 0.2s ease;
text-shadow: none;
font-family: 'Inter', sans-serif;
}
.tool-link[data-tooltip]:hover::after {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}