-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
105 lines (92 loc) · 3.58 KB
/
about.html
File metadata and controls
105 lines (92 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
position: relative;
}
/* Container for all content with white background and black border */
.content-container {
background-color: white;
border: 2px solid black;
padding: 20px;
position: relative; /* Ensures content stays above the animation */
z-index: 1; /* Keeps content above the animated circle */
}
/* Animated circle styling - position is controlled by CSS variables */
.animated-circle {
position: absolute;
--circle-top: 10%; /* Control vertical position */
--circle-left: 10%; /* Control horizontal position */
--circle-size: 500px; /* Control size */
top: var(--circle-top);
left: var(--circle-left);
width: var(--circle-size);
height: var(--circle-size);
background-color: rgba(100, 200, 255, 0.3);
border-radius: 50%;
animation: 3s linear 1s infinite alternate slide-in;
z-index: 0; /* Keeps circle behind content */
}
@keyframes slide-in {
from {
transform: translateX(0);
}
to {
transform: translateX(1000px);
}
}
blockquote {
font-style: italic;
border-left: 3px solid #ccc;
padding-left: 15px;
margin-left: 15px;
}
hr {
margin: 20px 0;
border: 0;
height: 1px;
background: #ccc;
}
.about-content {
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
margin: 20px 0;
}
</style>
</head>
<body>
<!-- Animated circle in the background -->
<div class="animated-circle"></div>
<!-- All content wrapped in the container -->
<div class="content-container">
<p>Every great idea, every pursuit, and every creation begins with a single question: <b>Why?</b></p>
<blockquote>
"Judge a man by his questions rather than his answers." - Voltaire
</blockquote>
<div class="about-content">
<h2>About This Site</h2>
<p>The purpose of this page is to collect, compile and demonstrate various concepts or ideas that are based in software. All guides are a work in progress demonstrating a struggle to obtain an outcome. Most of the concepts included are medical in nature and I hope you can follow along.</p>
<p>What began as an obssession for cataloging and documenting thoughts has become...an interactive environment. One that I hope I can utilize to offer services in the form of Low-Cost CEU's to my old colleagues. I think 5$ per hour is sufficient for a CEU.</p>
</div>
<h3>Help The Projects:</h3>
<ul>
<li><a href="/info/mypublishments.html">Publishments I Researched In</a></li>
<li><a href="https://buy.stripe.com/7sI7w5a1g35X4wg7st">Support Me</a></li>
</ul>
<hr>
<center>
<small>2025 Started, All rights reserved.</small>
</center>
</div>
</body>
</html>