Skip to content

Commit 24014d6

Browse files
hyperlink style fix
1 parent 565b30a commit 24014d6

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

components/projectcard.templ

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package components
33
import "resume/main/models"
44

55
templ ProjectCard(project models.Project) {
6-
<div class="project-card">
7-
<a href={templ.URL(project.RepoLink)} target={project.Target} class="link-icon">
8-
<h3>{project.Name}</h3>
9-
<p>{project.Desc}</p>
10-
</a>
11-
</div>
6+
<a href={templ.URL(project.RepoLink)} target={project.Target}>
7+
<div class="project-card">
8+
<h3>{project.Name}</h3>
9+
<p>{project.Desc}</p>
10+
</div>
11+
</a>
1212
}

components/projectcard_templ.go

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

project_pages/math-interpreter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Math Interpreter
22

3-
<a href="https://github.com/colorfulparadox/Custom-Math-Interpreter" target="_blank">Github Repository</a>
3+
To view the Github Repository <a href=https://github.com/colorfulparadox/Custom-Math-Interpreter target=_blank>click here</a>
44

55

66
An interpreter reads input and executes instructions without converting it into ASM or intermediate machine code.

project_pages/resume-website.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Resume Website
22

3-
If you want to view the repository
4-
<a href=”https://github.com/colorfulparadox/resume-website” target=”_blank”>click here</a>
3+
If you want to view the repository <a href=https://github.com/colorfulparadox/resume-website target=_blank>click here</a>
54

65
### Technology Stack and Motovation
76
For this project I wanted to keep it quite simple. I also wanted to explore the other parts of development that are not usually covered in class. Such as learning to use Docker, hosting, and serverside rendering.

static/stylesheet.css

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ body {
9999
margin-bottom: 20px;
100100
}
101101

102+
.main-content a {
103+
color: #5cbdfd;
104+
}
105+
106+
.main-content a:visited {
107+
color: #e371fa
108+
}
109+
102110
.education {
103111
margin-bottom: 25px;
104112
}
@@ -186,7 +194,7 @@ body {
186194
outline: solid 3.2px #51acfc;
187195
transform: translateY(-5px);
188196
box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.75);
189-
cursor: pointer;
197+
/*cursor: pointer;*/
190198
}
191199

192200
.project-card h3 {
@@ -200,13 +208,14 @@ body {
200208
line-height: 1.6;
201209
}
202210

203-
.project-card a {
211+
.portfolio a {
204212
color: inherit;
205213
text-decoration: none;
206214
}
207215

208-
.project-card a:visited {
209-
color: #ffffff
216+
.portfolio a:visited {
217+
color: inherit;
218+
text-decoration: none;
210219
}
211220

212221
.go-back {
@@ -217,18 +226,10 @@ body {
217226
background-color: #121212;
218227
}
219228

220-
.go-back a {
221-
color: #51b8fc;
222-
}
223-
224229
.go-back h3:hover {
225230
transform: translateX(3px);
226231
}
227232

228-
.go-back a:visited {
229-
color: #e167fa
230-
}
231-
232233
@keyframes slideInLeft {
233234
from {
234235
transform: translateX(0);

0 commit comments

Comments
 (0)