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

Added latest version and updated website

This commit is contained in:
2025-09-03 17:46:14 +03:00
parent e84118d32c
commit 359cf14008
8 changed files with 186 additions and 57 deletions

View File

@@ -1,3 +1,7 @@
html {
scroll-behavior: smooth;
}
* {
box-sizing: border-box;
margin: 0;
@@ -170,6 +174,7 @@ footer {
justify-content: space-between;
transition: height 0.3s ease;
min-height: 160px;
scroll-margin: 20vh;
}
.version-card h2 {
@@ -487,4 +492,14 @@ a.back-to-top:hover {
padding: 6px 12px;
text-align: center;
word-wrap: break-word;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.7); }
70% { box-shadow: 0 0 0 15px rgba(0, 150, 255, 0); }
100% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0); }
}
.highlight {
animation: pulse 1.5s ease-out;
}