-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
174 lines (153 loc) · 5.17 KB
/
Copy pathgithub.html
File metadata and controls
174 lines (153 loc) · 5.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>GitHub | Skybl0cker</title>
<link href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="logo.png">
<style>
body {
background-color: #2c2c2c;
color: #ffffff; /* Set all text to white */
font-family: 'Courier New', Courier, monospace;
text-align: center;
margin: 0;
padding: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #ffffff; /* Ensure header is white */
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.card {
background: #1e1e1e;
padding: 15px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
/* Ensure all images are 300x150 */
.card img {
width: 300px;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}
.card h3 {
font-size: 1.5rem;
color: #ffffff; /* Ensure card titles are white */
}
.card p {
font-size: 1rem;
color: #ffffff; /* Ensure paragraph text is white */
}
.badges {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 10px; /* Add space between badges */
flex-wrap: wrap;
}
.badge {
background-color: #444;
padding: 5px 10px;
border-radius: 12px;
font-size: 0.9rem;
color: #ffffff; /* Ensure badge text is white */
}
a {
color: #ffffff; /* Ensure links are white */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Navigation Styling */
nav {
text-align: left;
margin-bottom: 20px;
}
nav ul {
list-style: none;
display: flex;
gap: 15px;
}
nav ul li a {
color: #ffffff; /* Ensure nav links are white */
text-decoration: none;
font-weight: bold;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<ul>
<li><a href="index.html">/home</a></li>
<li><a href="youtube.html">/youtube</a></li>
<li><a href="github.html">/github</a></li>
<li><a href="about.html">/about</a></li>
</ul>
</nav>
<h1>My GitHub Projects</h1>
<!-- Cards Layout -->
<div class="card-grid">
<!-- Project 1: ScoutinFRC -->
<div class="card">
<img src="scouting.jpg" alt="ScoutinFRC Project"> <!-- Replace with your image -->
<h3>ScoutinFRC</h3>
<p>A scouting application designed for FIRST Robotics Competition. It helps teams collect and analyze data on competing robots during events.</p>
<div class="badges">
<span class="badge">Dart</span>
<span class="badge">Flutter</span>
</div>
<a href="https://github.com/HVA-FRC-3824/ScoutinFRC" target="_blank">View Project</a>
</div>
<!-- Project 2: Flutter Scouting Framework -->
<div class="card">
<img src="framework.jpg" alt="Flutter Scouting Framework"> <!-- Replace with your image -->
<h3>Flutter Scouting Framework</h3>
<p>A mobile-first framework built using Flutter for scouting purposes, used as a teaching resource for Flutter.</p>
<div class="badges">
<span class="badge">Dart</span>
<span class="badge">Flutter</span>
</div>
<a href="https://github.com/HVA-FRC-3824/ScoutingFramework" target="_blank">View Project</a>
</div>
<!-- Project 3: My Website -->
<div class="card">
<img src="website.webp" alt="My Website"> <!-- Replace with your image -->
<h3>My Website</h3>
<p>This website showcases my projects and coding skills, and links to my YouTube channel and GitHub repositories.</p>
<div class="badges">
<span class="badge">HTML</span>
<span class="badge">CSS</span>
<span class="badge">JavaScript</span>
</div>
<a href="https://github.com/skybl0cker/skybl0cker.github.io" target="_blank">View Project</a>
</div>
</div>
</body>
</html>