-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
151 lines (130 loc) · 5.14 KB
/
code.html
File metadata and controls
151 lines (130 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects | Caleb Martins</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
color: white;
min-height: 100vh;
padding: 40px 20px;
}
.container { max-width: 900px; margin: 0 auto; }
.back-nav { margin-bottom: 40px; }
.glass-btn {
text-decoration: none;
color: white;
background: rgba(255, 255, 255, 0.05);
padding: 10px 20px;
border-radius: 50px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: 0.3s;
display: inline-flex;
align-items: center;
gap: 8px;
}
.glass-btn:hover { background: rgba(255, 255, 255, 0.15); }
.header-section { margin-bottom: 50px; text-align: center; }
.header-section h1 { font-size: 2.5rem; color: #60a5fa; margin-bottom: 10px; }
.header-section p { opacity: 0.7; font-size: 1.1rem; }
/* Project Grid */
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}
.project-card {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 30px;
transition: transform 0.3s ease, border-color 0.3s ease;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.project-card:hover {
transform: translateY(-10px);
border-color: rgba(96, 165, 250, 0.5);
background: rgba(255, 255, 255, 0.05);
}
.tech-badge {
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 800;
padding: 4px 12px;
border-radius: 50px;
background: rgba(96, 165, 250, 0.2);
color: #93c5fd;
display: inline-block;
margin-bottom: 15px;
}
.project-card h2 { font-size: 1.4rem; margin-bottom: 12px; color: #f8fafc; }
.project-card p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 20px; line-height: 1.5; }
.repo-link {
text-decoration: none;
color: #60a5fa;
font-weight: 600;
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 5px;
}
.repo-link:hover { text-decoration: underline; }
/* Icons */
.fa-r-project { color: #276dc3; }
.fa-python { color: #ffd43b; }
.fa-file-excel { color: #1d6f42; }
</style>
</head>
<body>
<div class="container">
<nav class="back-nav">
<a href="index.html" class="glass-btn"><i class="fas fa-arrow-left"></i> Back to Home</a>
</nav>
<header class="header-section">
<h1>Code & Data Projects</h1>
<p>A collection of scripts, models, and statistical tools.</p>
</header>
<div class="project-grid">
<div class="project-card">
<div>
<span class="tech-badge">Spreadsheets</span>
<h2><i class="fas fa-file-excel"></i> Working in Excel</h2>
<p>Techniques and automated workbooks for data organization and financial tracking.</p>
</div>
<a href="https://github.com/Caleshi/Working-in-Excel" class="repo-link" target="_blank">
View on GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project-card">
<div>
<span class="tech-badge">R Stats</span>
<h2><i class="fab fa-r-project"></i> Sampling Analysis</h2>
<p>Implementation of Horvitz-Thompson estimators and stratified sampling logic for Pernambuco health data.</p>
</div>
<a href="#" class="repo-link">
View on GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project-card">
<div>
<span class="tech-badge">Python</span>
<h2><i class="fab fa-python"></i> Regression Models</h2>
<p>Automated regression analysis and data cleaning pipelines built for statistical inference tasks.</p>
</div>
<a href="#" class="repo-link">
View on GitHub <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
</div>
</body>
</html>