-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcnote.html
More file actions
196 lines (175 loc) · 5.7 KB
/
Copy pathcnote.html
File metadata and controls
196 lines (175 loc) · 5.7 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:title" content="Soul's Profile">
<meta property="og:description" content="Hey! Click to check out my new web profile!">
<meta property="og:url" content="https://soul.dedyn.io">
<meta property="og:type" content="website">
<meta name="theme-color" content="#2fb47e">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soul // Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;500&family=Outfit:wght@300;600&display=swap" rel="stylesheet">
<style>
:root {
--bg-deep: #0f0f0f;
--card-bg: #1a1a1a;
--accent-purple: #2fb47e;
--accent-dim: #249066;
--accent-light: #45c992;
--text-gray: #a0a0a0;
--text-white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
background-color: var(--bg-deep);
color: var(--text-white);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
width: 100%;
max-width: 700px;
background: var(--card-bg);
border: 1px solid #2a2a2a;
border-radius: 24px;
padding: 2.5rem 3rem;
position: relative;
box-shadow: 0 30px 60px rgba(0,0,0,0.5);
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease-out;
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.container.loaded {
opacity: 1;
transform: translateY(0);
}
.header-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
h1 {
font-size: 2.2rem;
color: var(--accent-purple);
}
.nav-link-top {
color: var(--text-gray);
text-decoration: none;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 1.5px;
transition: all 0.3s;
border: 1px solid #2a2a2a;
padding: 8px 16px;
border-radius: 8px;
}
.nav-link-top:hover {
color: var(--accent-purple);
border-color: var(--accent-purple);
background: rgba(47, 180, 126, 0.05);
}
.main-text {
color: var(--text-gray);
line-height: 1.6;
font-size: 1.05rem;
}
.inner-footer {
margin-top: 0.5rem;
padding-top: 1.5rem;
border-top: 1px solid #2a2a2a;
}
.section-title {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-white);
text-transform: uppercase;
margin-bottom: 1rem;
display: block;
letter-spacing: 2px;
}
.languages {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
color: var(--accent-purple);
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.languages span {
display: flex;
align-items: center;
}
.languages span::before {
content: "•";
margin-right: 8px;
color: var(--accent-dim);
}
.outer-copyright {
margin-top: 2rem;
text-align: center;
font-family: 'JetBrains Mono', monospace;
font-size: 0.7rem;
color: var(--text-gray);
opacity: 0.4;
text-transform: uppercase;
letter-spacing: 1.5px;
pointer-events: none;
}
@media (max-width: 600px) {
.container { padding: 2rem; }
.header-row {
flex-direction: column;
gap: 1rem;
text-align: center;
}
h1 { font-size: 1.8rem; }
}
</style>
</head>
<body>
<div class="container" id="mainContainer">
<div class="header-row">
<h1 id="soulTitle">Commissions</h1>
<a href="javascript:history.back()" class="nav-link-top">← Go Back</a>
</div>
<div class="main-text">
<p>
At this time, I am not accepting new commissions as I do not currently have the time or energy to provide quality content and code. If you would still like to reach out about it, you can contact me through my provided socials to get in contact with me!
</p>
</div>
</div>
<div class="outer-copyright">
© 2026 Soul. All Rights Reserved.
</div>
<script>
window.addEventListener('DOMContentLoaded', () => {
const container = document.getElementById('mainContainer');
setTimeout(() => {
container.classList.add('loaded');
}, 100);
const purpleText = document.getElementById('soulTitle');
let brightness = 1;
setInterval(() => {
brightness = brightness === 1 ? 0.8 : 1;
purpleText.style.transition = 'opacity 2s ease-in-out';
purpleText.style.opacity = brightness;
}, 2000);
});
</script>
</body>
</html>