161 lines
2.8 KiB
CSS
161 lines
2.8 KiB
CSS
.discover {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.discover h1 {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
color: var(--text-primary);
|
|
font-size: 2.5rem;
|
|
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.card-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.profile-card {
|
|
background: var(--bg-secondary);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-lg);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
border: 1px solid var(--border-color);
|
|
transition: all 0.3s ease;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.profile-card:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
|
|
}
|
|
|
|
.profile-card img {
|
|
width: 100%;
|
|
height: 450px;
|
|
object-fit: cover;
|
|
display: block;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.profile-card:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.no-photo {
|
|
width: 100%;
|
|
height: 450px;
|
|
background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--text-secondary);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.card-info {
|
|
padding: 1.8rem;
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.card-info h2 {
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-primary);
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.location {
|
|
color: var(--accent-primary);
|
|
margin-bottom: 0.8rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.bio {
|
|
color: var(--text-secondary);
|
|
margin: 1rem 0;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.interests {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.6rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.interests .interest-tag {
|
|
background: rgba(0, 212, 255, 0.1);
|
|
color: var(--accent-primary);
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.85rem;
|
|
border: 1px solid var(--accent-primary);
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.interests .interest-tag:hover {
|
|
background: var(--accent-primary);
|
|
color: var(--bg-primary);
|
|
}
|
|
|
|
.card-actions {
|
|
display: flex;
|
|
gap: 1rem;
|
|
padding: 1.5rem;
|
|
border-top: 1px solid var(--border-color);
|
|
justify-content: center;
|
|
}
|
|
|
|
.card-actions button {
|
|
flex: 1;
|
|
padding: 0.9rem;
|
|
font-size: 1rem;
|
|
border-radius: 8px;
|
|
border: none;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.pass-btn {
|
|
background: var(--bg-tertiary);
|
|
color: var(--text-primary);
|
|
border: 1.5px solid var(--border-color);
|
|
}
|
|
|
|
.pass-btn:hover {
|
|
background: var(--border-color);
|
|
border-color: var(--text-secondary);
|
|
transform: translateY(-2px);
|
|
}
|
|
}
|
|
|
|
.like-btn {
|
|
background: linear-gradient(135deg, var(--accent-secondary), #ff1493);
|
|
color: white;
|
|
}
|
|
|
|
.like-btn:hover {
|
|
background-color: #c82333;
|
|
}
|
|
|
|
.progress {
|
|
text-align: center;
|
|
color: #666;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.discover .empty-state {
|
|
text-align: center;
|
|
padding: 3rem;
|
|
}
|