2025-05-23 15:25:48 +02:00
|
|
|
:root {
|
|
|
|
--bg-dark: #072C24;
|
|
|
|
--text-gold: #E3CB9A;
|
|
|
|
--accent-blue: #78DBFF;
|
|
|
|
--footer-text: #93B8B1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme {
|
|
|
|
background-color: var(--bg-dark);
|
|
|
|
color: var(--text-gold);
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
font-family: 'Lobster', cursive;
|
|
|
|
font-size: 2.2rem;
|
|
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
font-weight: 500;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.auth-container a {
|
|
|
|
color: var(--accent-blue) !important;
|
|
|
|
text-decoration: none;
|
2025-05-25 16:25:22 +02:00
|
|
|
text-align: center;
|
|
|
|
margin-top: 1rem;
|
2025-05-23 15:25:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
background-color: #09342b;
|
|
|
|
padding: 2rem 0;
|
|
|
|
margin-top: 4rem;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: var(--footer-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
background: linear-gradient(145deg, #08352c 0%, #062a23 100%);
|
|
|
|
border: 1px solid #1c4d42;
|
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-gothic {
|
|
|
|
background-color: #1c4d42;
|
|
|
|
color: var(--text-gold);
|
|
|
|
border: 1px solid #2a6b5e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-gothic:hover {
|
|
|
|
background-color: #2a6b5e;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.auth-container {
|
2025-05-25 16:25:22 +02:00
|
|
|
max-width: 500px;
|
|
|
|
margin: 2rem auto;
|
|
|
|
padding: 2rem;
|
|
|
|
border: 1px solid #2a6b5e;
|
|
|
|
border-radius: 8px;
|
2025-05-23 15:25:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.auth-container h2 {
|
|
|
|
font-family: 'Lobster', cursive;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5rem;
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
2025-05-24 16:47:32 +02:00
|
|
|
|
|
|
|
#books-container {
|
2025-05-26 18:25:47 +02:00
|
|
|
justify-content: center !important;
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-card {
|
2025-05-26 18:25:47 +02:00
|
|
|
width: 100%; /* Wykorzystaj całą dostępną szerokość */
|
2025-05-26 17:36:01 +02:00
|
|
|
height: 100%;
|
|
|
|
background: #1a1a1a;
|
|
|
|
border: 1px solid #343434;
|
2025-05-26 18:25:47 +02:00
|
|
|
transition: all 0.3s ease;
|
2025-05-24 19:23:52 +02:00
|
|
|
}
|
|
|
|
|
2025-05-26 18:25:47 +02:00
|
|
|
.cover-container {
|
|
|
|
width: 100%;
|
|
|
|
aspect-ratio: 5/8; /* Nowoczesne podejście do proporcji */
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-cover {
|
2025-05-24 19:23:52 +02:00
|
|
|
width: 100%;
|
2025-05-26 18:25:47 +02:00
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center top;
|
|
|
|
transition: transform 0.3s ease;
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
2025-05-26 18:25:47 +02:00
|
|
|
.book-cover:hover {
|
|
|
|
transform: scale(1.05);
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-title {
|
2025-05-24 19:23:52 +02:00
|
|
|
font-size: 1rem;
|
2025-05-26 18:25:47 +02:00
|
|
|
line-height: 1.3;
|
|
|
|
height: 3.2em; /* Na 2 linie tekstu */
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0 0.5rem;
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-info {
|
|
|
|
color: var(--text-gold);
|
|
|
|
text-align: center;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dodaj do istniejących styli */
|
|
|
|
.lobster-font {
|
|
|
|
font-family: 'Lobster', cursive;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inter-font {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: var(--accent-blue) !important;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-accent {
|
|
|
|
color: var(--accent-blue) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-card {
|
2025-05-25 16:25:22 +02:00
|
|
|
background-color: #1a1a1a;
|
|
|
|
border: 1px solid #333;
|
|
|
|
border-radius: 8px;
|
|
|
|
color: #fff;
|
2025-05-24 16:47:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark-card:hover {
|
|
|
|
transform: translateY(-5px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-accent {
|
|
|
|
color: #78DBFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
#book-description {
|
|
|
|
line-height: 1.8;
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchInput {
|
|
|
|
height: 50px;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* W pliku styles.css */
|
|
|
|
.navbar-nav {
|
|
|
|
gap: 1.5rem !important; /* Odstępy między linkami */
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
padding: 0.5rem 1rem; /* Większy obszar klikalny */
|
|
|
|
display: inline-block; /* Lepsze wyrównanie */
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-img-top {
|
|
|
|
height: 350px;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-dark {
|
|
|
|
background-color: #072C24 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-gold {
|
|
|
|
color: #E3CB9A;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
font-weight: 500;
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-gold:hover {
|
|
|
|
color: #E3CB9A;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchInput {
|
|
|
|
min-width: 300px;
|
|
|
|
background-color: #1a322d;
|
|
|
|
color: #E3CB9A;
|
|
|
|
border: 1px solid #3d5a53;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchInput::placeholder {
|
|
|
|
color: #93B8B1;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2025-05-25 16:25:22 +02:00
|
|
|
|
|
|
|
.user-links, .anonymous-links {
|
|
|
|
gap: 1rem;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Responsywność */
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
#books-container {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-05-25 16:54:16 +02:00
|
|
|
.btn-outline-gothic {
|
|
|
|
border: 2px solid #0ff;
|
|
|
|
color: #0ff;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-outline-gothic:hover {
|
|
|
|
background-color: #0ff;
|
|
|
|
color: #000;
|
|
|
|
box-shadow: 0 0 15px #0ff;
|
|
|
|
}
|
|
|
|
|
2025-05-25 16:25:22 +02:00
|
|
|
.neon-title {
|
|
|
|
color: #0ff;
|
|
|
|
text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
|
|
|
|
}
|
2025-05-25 17:52:16 +02:00
|
|
|
|
|
|
|
.order-item {
|
|
|
|
background-color: #2a2a2a;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.order-item:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|