forked from ItsssssJack/-1m-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
73 lines (62 loc) · 1.61 KB
/
Copy pathindex.css
File metadata and controls
73 lines (62 loc) · 1.61 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #000000;
--foreground: #ffffff;
--primary: #3b82f6;
--primary-glow: rgba(59, 130, 246, 0.5);
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: var(--background);
color: var(--foreground);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Outfit', sans-serif;
}
/* Custom Utilities */
.glass-panel {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.glass-panel:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.15);
}
.text-gradient {
background: linear-gradient(to right, #ffffff, #94a3b8);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.text-gradient-blue {
background: linear-gradient(to right, #60a5fa, #a78bfa);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/* Smooth Scroll */
html {
scroll-behavior: smooth;
}
/* Selection */
::selection {
background: rgba(59, 130, 246, 0.3);
color: white;
}
/* Hide Cal.com branding */
[class*="cal-"] a[href*="cal.com"],
[class*="Cal"] a[href*="cal.com"],
a[href*="cal.com"][target="_blank"],
div[class*="branding"],
div[class*="powered"] {
display: none !important;
}