forked from DigitalShadowcom/digitalshadowcom.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (93 loc) · 1.65 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (93 loc) · 1.65 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
:root {
--bg: #050505;
--accent: #7c3aed;
--text: #ffffff;
--dim: #a1a1aa;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
background: var(--bg);
color: var(--text);
height: 100vh;
overflow: hidden;
}
.background {
position: fixed;
inset: 0;
background: radial-gradient(circle at top, #2e1065, transparent 60%);
z-index: -1;
}
/* Glass Effect */
.glass {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(18px);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 24px;
box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.hero {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: min(90%, 520px);
padding: 50px;
text-align: center;
}
.hero h1 {
font-size: 2.6rem;
font-weight: 800;
margin-bottom: 16px;
}
.subtitle {
color: var(--dim);
line-height: 1.7;
}
.section {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: min(90%, 520px);
padding: 50px;
text-align: left;
}
.section h2 {
margin-bottom: 16px;
}
.section p,
.section li {
color: var(--dim);
line-height: 1.7;
}
ul {
list-style: none;
padding-left: 0;
}
li {
margin-bottom: 10px;
}
button {
margin-top: 24px;
padding: 12px 32px;
border-radius: 999px;
border: none;
cursor: pointer;
font-weight: 600;
}
.primary {
background: white;
color: black;
}
.secondary {
background: var(--accent);
color: white;
}
.hidden {
display: none;
}