1
0
mirror of https://gitlab.com/lolmam/Phigros-Android-History.git synced 2026-02-04 16:21:11 +00:00

Updated website

This commit is contained in:
2025-08-26 23:05:08 +03:00
parent b9575a509b
commit 6531366ab9
2 changed files with 100 additions and 25 deletions

View File

@@ -93,7 +93,7 @@ h1 {
p {
font-size: 1.1rem;
margin-bottom: 20px;
margin-bottom: 10px;
color: #dddddd;
}
@@ -440,3 +440,51 @@ a.back-to-top:hover {
color: #0077cc;
font-family: monospace;
}
.home-dropdown-toggle {
background: none;
border: none;
color: #2f80ed;
font-weight: 600;
cursor: pointer;
font-size: 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: color 0.2s;
border-radius: 8px;
}
.home-dropdown-toggle:hover {
color: #4fa1ff;
}
.home-dropdown-toggle .arrow-left,
.home-dropdown-toggle .arrow-right {
display: inline-block;
transition: transform 0.22s ease;
line-height: 1;
font-size: 1rem;
}
.home-dropdown-toggle.open .arrow-left {
transform: rotate(90deg);
}
.home-dropdown-toggle.open .arrow-right {
transform: rotate(-90deg);
}
.home-dropdown-content {
display: none;
background: #111;
border: 1px solid #333;
border-radius: 6px;
color: #ccc;
margin: 5px auto 5px;
font-size: 0.9rem;
max-width: 540px;
padding: 6px 12px;
text-align: center;
word-wrap: break-word;
}