1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

add articles

This commit is contained in:
zumbiepig
2024-09-04 11:42:36 -07:00
parent 26406bc46b
commit b37f22e6eb
14 changed files with 178 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -474,11 +474,6 @@ nav {
width: 80px;
height: 80px;
margin: 0 auto 10px;
}
.mod-item .mod-icon img {
width: 100%;
height: 100%;
border-radius: 5px;
object-fit: cover;
}
@@ -501,7 +496,7 @@ nav {
}
.mod-item .mod-author a {
color: #0000ff
color: #0000ff;
}
.mod-item .mod-description {
@@ -717,3 +712,54 @@ nav {
padding: 20px;
padding-bottom: 7%;
}
.article-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
padding: 10px;
text-align: center;
scrollbar-width: thin;
scrollbar-color: #555 #333;
}
.article-item {
background-color: #333;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 10px;
text-align: center;
position: relative;
padding-bottom: 0;
}
.article-item:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
cursor: pointer;
background-color: #3d3d3d;
}
.article-item .article-icon {
width: 80px;
height: 80px;
margin: 0 auto 10px;
border-radius: 5px;
object-fit: cover;
}
.article-item .article-details {
padding: 10px 0;
}
.article-item .article-name {
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
color: #fff;
}
.article-item .article-description {
font-size: 14px;
color: #bbb;
margin-bottom: 10px;
}