Removendo animações da pagina

parent aebb48eb
......@@ -107,7 +107,6 @@ header h1 {
font-weight: 700;
border: none;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-size: 1rem;
box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}
......@@ -119,8 +118,6 @@ header h1 {
.btn-primary:hover {
background: #256627;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}
.btn-secondary {
......@@ -132,7 +129,6 @@ header h1 {
.btn-secondary:hover {
background: var(--wood-brown);
color: white;
transform: translateY(-2px);
}
.btn-edit {
......@@ -144,7 +140,6 @@ header h1 {
.btn-edit:hover {
background: #e38f4a;
transform: scale(1.08);
}
.btn-delete {
......@@ -163,7 +158,7 @@ header h1 {
border-radius: 16px;
border: 4px solid var(--wood-brown);
box-shadow: var(--shadow-wood);
overflow: hidden; /* 🔥 ESSA LINHA RESOLVE O PROBLEMA */
overflow: hidden;
}
.animals-table {
......@@ -171,7 +166,7 @@ header h1 {
border-collapse: collapse;
background: var(--card-bg);
table-layout: auto;
border-radius: 12px; /* arredonda a própria tabela também */
border-radius: 12px;
}
.animals-table thead {
......@@ -194,13 +189,8 @@ header h1 {
color: var(--text-dark);
}
.animals-table tbody tr {
transition: all 0.3s ease;
}
.animals-table tbody tr:hover {
background-color: #f8f1e3;
transform: scale(1.01);
}
/* Formulário de cadastro */
......@@ -231,7 +221,6 @@ header h1 {
border-radius: 12px;
font-family: 'Lexend', sans-serif;
font-size: 1rem;
transition: all 0.3s ease;
background: #fffef7;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment