added readme + license

This commit is contained in:
2025-01-16 00:52:20 +11:00
parent 9539d8fc73
commit 355d0d73d6
4 changed files with 79 additions and 0 deletions

View File

@@ -299,3 +299,25 @@ footer {
.footer-content nav a:hover {
color: var(--primary-color);
}
.add-snippet-button {
display: flex;
align-items: center;
background-color: #28a745;
color: #fff;
padding: 10px 15px;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 500;
transition: background-color 0.2s;
}
.add-snippet-button svg {
width: 20px;
height: 20px;
margin-right: 8px;
}
.add-snippet-button:hover {
background-color: #218838;
}