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

install mods

This commit is contained in:
zumbiepig
2024-09-01 18:10:18 -07:00
parent dd0b28c755
commit e28b220f5a
3 changed files with 69 additions and 19 deletions

View File

@@ -514,7 +514,7 @@ nav {
margin-top: 10px;
}
.mod-item .mod-link {
.mod-item .mod-download {
padding: 5px 15px;
background-color: #555;
color: #fff;
@@ -523,10 +523,33 @@ nav {
transition: background-color 0.3s;
}
.mod-item .mod-link:hover {
.mod-item .mod-download:hover {
cursor: pointer;
background-color: #777;
}
.mod-item .mod-install {
padding: 5px 15px;
background-color: #4c4;
color: #fff;
text-decoration: none;
border-radius: 7px;
transition: background-color 0.3s;
}
.mod-item .mod-install:hover {
cursor: pointer;
background-color: #00b300;
}
.mod-item .mod-install.installed {
background-color: #ff0000;
}
.mod-item .mod-install.installed:hover {
background-color: #cc0000;
}
.server-list {
display: flex;
flex: 1;