modified: serv_nginx/bbvue/src/router/index.js

modified:   serv_nginx/bbvue/src/views/Home.vue
change message and set button's new css rule
This commit is contained in:
2025-10-18 06:27:05 +05:00
parent 9d5e65abd4
commit 8adb466391
2 changed files with 26 additions and 7 deletions
+4 -4
View File
@@ -94,17 +94,17 @@ function showNotification(message) {
const notification = document.createElement('div') const notification = document.createElement('div')
notification.style.cssText = ` notification.style.cssText = `
position: fixed; position: fixed;
top: 20px; top: 50px;
right: 20px; right: 20px;
background: #2e8b57; background: rgba(46, 139, 87, 0.8); /* Прозрачный зеленый фон */
backdrop-filter: blur(10px); /* Размытый фон */
color: white; color: white;
padding: 15px 20px; padding: 15px 20px;
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15); box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 10000; z-index: 10000;
max-width: 300px; max-width: 300px;
font-family: Arial, sans-serif; `;
`
notification.textContent = message notification.textContent = message
document.body.appendChild(notification) document.body.appendChild(notification)
+19
View File
@@ -361,6 +361,7 @@ export default {
justify-content: center; justify-content: center;
flex-wrap: wrap; flex-wrap: wrap;
margin-bottom: 3rem; margin-bottom: 3rem;
width: 100%;
} }
.btn { .btn {
@@ -374,11 +375,13 @@ export default {
transition: all 0.3s ease; transition: all 0.3s ease;
border: 2px solid transparent; border: 2px solid transparent;
gap: 0.5rem; gap: 0.5rem;
min-width: 120px;
} }
.btn-large { .btn-large {
padding: 18px 35px; padding: 18px 35px;
font-size: 1.1rem; font-size: 1.1rem;
min-width: 140px;
} }
.btn-primary { .btn-primary {
@@ -818,4 +821,20 @@ export default {
padding: 0 15px; padding: 0 15px;
} }
} }
@media (max-width: 360px) {
.hero-actions {
gap: 0.5rem;
}
.btn {
font-size: 0.85rem;
padding: 12px 16px;
}
.btn-large {
padding: 14px 18px;
font-size: 0.9rem;
}
}
</style> </style>