Skip to content

Commit c07cf98

Browse files
committed
Feat: UX and text styling
1 parent a3bf15f commit c07cf98

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

Block Chain Collage Code 0/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<title>Class Repo Learning Projects - Block Chain Collage | Code 0</title>
1414
</head>
1515
<body>
16-
<h3>Class Repo Projects - Block Chain Collage | Code 0</h3>
16+
<h3><a class="home" href="../index.html">Class Repo Projects</a> - Block Chain Collage | Code 0</h3>
1717
<div class="links">
1818
<a href="1/index.html">01</a>
1919
<a href="2/index.html">02</a>

Rashed Code 23/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<title>Class Repo Learning Projects | Rashed - Code 23</title>
1414
</head>
1515
<body>
16-
<h3>Class Repo Projects | Rashed - Code 23</h3>
16+
<h3><a class="home" href="../index.html">Class Repo Projects</a> | Rashed - Code 23</h3>
1717
<div class="links">
1818
<a href="1/index.html">01</a>
1919
<a href="2/index.html">02</a>

css/style.css

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ h3 {
5050
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
5151
}
5252

53+
.home {
54+
color: rgba(255, 255, 255, 0.571);
55+
transition: color 0.5s;
56+
}
57+
58+
.home:hover {
59+
color: white;
60+
}
61+
5362
/* Each Link Button */
5463
.links a {
5564
text-decoration: none;
@@ -130,4 +139,4 @@ footer {
130139
font-size: 0.9rem;
131140
padding: 0.8rem;
132141
}
133-
}
142+
}

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<h1>Class Repo Projects</h1>
1717
<div class="links">
1818
<a href="Rashed Code 23/index.html">Rashed Code 23</a>
19-
<a href="Collage Code 0/index.html">Collage Code 0</a>
20-
<a href="Collage Code 1/index.html">Collage Code 1</a>
19+
<a href="Block Chain Collage Code 0/index.html">Block Chain Collage Code 0</a>
20+
<a href="Block Chain Collage Code 1/index.html">Block Chain Collage Code 1</a>
2121
</div>
2222
<footer>© 2025 Class Repo | MDJAmin</footer>
2323
<script src="js/script.js"></script>

0 commit comments

Comments
 (0)