Tabuľka všetkého čo ponúkame
NÁZOV | CENA | VYBERTE SI FORMU NÁKUPU | |
---|---|---|---|
Pelety A1 Premium | 6,00 € – 8547,00 € | 6,00 € 8547,00 € 370,00 € | |
Pelety A1 Cappuccino | 5,90 € – 7970,00 € | 5,90 € 7970,00 € 345,00 € | |
Brikety RUF | 4,12 € – 6930,00 € | 4,12 € 6930,00 € 300,00 € | |
Brikety NESTRO | 4,54 € – 7854,00 € | 4,54 € 7854,00 € 340,00 € |
.table {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Updatovaný tieň okolo tabuľky */
transition: 0.3s;
}
.table th,
.table td {
padding: 1rem;
border-bottom: 1px solid #ddd;
text-align: left;
transition: 0.3s;
}
.table th {
background-color: #ff8000;
color: white;
}
.table tr:nth-child(even) {
background-color: #f2f2f2;
}
.table tr:hover {
transform: scale(1.01);
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.button {
display: inline-block;
padding: 0.5rem 2rem;
font-size: 1rem;
font-weight: bold;
text-align: center;
text-decoration: none;
color: white;
background-color: #ff8000;
border: none;
border-radius: 50px;
transition: all 0.3s ease 0s;
cursor: pointer;
}
.button:hover {
background-color: #ff9933;
transform: translateY(-5px);
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.button:active {
background-color: #cc6600;
transform: translateY(2px);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
.table {
grid-template-columns: 1fr;
}
.button {
padding: 0.5rem 1rem;
font-size: 0.875rem;
}
}