adding data and favicons

This commit is contained in:
2024-01-02 18:17:19 +01:00
parent 166c3cf0e8
commit a4ed942ae0
20 changed files with 130 additions and 46 deletions

View File

@@ -1,32 +1,85 @@
body {
font-family: Arial, sans-serif;
* {
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
box-sizing: border-box;
}
header, footer {
html {
font-size: 16px;
background-color: #cdcdcd;
}
body {
margin: 2rem;
}
header {
text-align: center;
padding: 1em;
background-color: #333;
color: white;
padding: 1rem;
}
footer {
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
padding: 1rem;
}
main {
padding: 2em;
margin: 1.7rem auto;
max-width: 1000px;
text-align: center;
align-items: center;
align-content: center;
}
#social-links {
main hr {
margin: 2.7rem auto;
max-width: 50%;
color: #4e464644;
}
.link-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1em;
padding: 2em 0;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
/* Maximum 3 columns */
gap: 1rem;
}
#social-links div {
background: white;
padding: 1em;
.link {
border: 1px solid #ddd;
padding: 1rem;
text-align: center;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.link:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.link img {
max-width: 100%;
height: auto;
}
.link .link-icon {
width: 24px;
height: 24px;
margin-right: 8px;
}
.link a {
display: flex;
align-items: center;
text-decoration: none;
color: #000;
width: 100%;
height: 100%;
}
.link h2 {
font-size: 24px;
}