mirror of
https://github.com/litruv/lit.ruv.wtf.git
synced 2026-07-24 02:36:02 +10:00
added project buttons
This commit is contained in:
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"liveServer.settings.port": 5502
|
||||
}
|
||||
@@ -62,6 +62,11 @@
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="project-links">
|
||||
<a href="https://mates.dev" target="_blank">MatesMedia</a>
|
||||
<a href="https://lit.ruv.wtf/materials" target="_blank">UE Material Snippets</a>
|
||||
</div>
|
||||
|
||||
</header>
|
||||
<div id="posts"></div>
|
||||
</div>
|
||||
|
||||
22
style.css
22
style.css
@@ -233,3 +233,25 @@ h1:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.project-links {
|
||||
margin-top: 2rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.project-links a {
|
||||
display: inline-block;
|
||||
margin: 0.5rem 0;
|
||||
padding: 0.5rem 1rem;
|
||||
background: white;
|
||||
color: #242424;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
border-radius: 20px;
|
||||
transition: background-color 0.3s ease, color 0.3s ease;
|
||||
}
|
||||
|
||||
.project-links a:hover {
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user