large update wip
This commit is contained in:
417
src/app/components/application/application.component.scss
Normal file
417
src/app/components/application/application.component.scss
Normal file
@@ -0,0 +1,417 @@
|
||||
.container {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
margin: 0;
|
||||
padding: 1rem;
|
||||
background: radial-gradient(circle at top, #0a0f2c 0%, #000000 100%);
|
||||
color: #e0e0ff;
|
||||
font-family: 'Orbitron', Arial, sans-serif;
|
||||
box-sizing: border-box;
|
||||
|
||||
@media (min-width: 768px) {
|
||||
padding: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Shining text effect */
|
||||
@keyframes shine {
|
||||
0% { background-position: -200% center; }
|
||||
100% { background-position: 200% center; }
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 0.6; }
|
||||
50% { opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translateY(0px); }
|
||||
50% { transform: translateY(-10px); }
|
||||
}
|
||||
|
||||
/* Header */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 2rem;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(90deg, #00ffff, #ffffff, #00ffff);
|
||||
background-size: 200% auto;
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
animation: shine 3s linear infinite;
|
||||
text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
|
||||
font-size: clamp(1.5rem, 4vw, 2rem);
|
||||
}
|
||||
}
|
||||
|
||||
/* Content wrapper */
|
||||
.content-wrapper {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Navigation Controls */
|
||||
.navigation-controls {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 2rem;
|
||||
gap: 2rem;
|
||||
padding: 1rem;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 12px;
|
||||
backdrop-filter: blur(10px);
|
||||
border: 1px solid rgba(0, 255, 255, 0.2);
|
||||
|
||||
.navigation-info {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
color: #00ffff;
|
||||
text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
|
||||
min-width: 80px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-button {
|
||||
background: rgba(0, 255, 255, 0.1);
|
||||
border: 2px solid #00ffff;
|
||||
border-radius: 50%;
|
||||
color: #00ffff;
|
||||
transition: all 0.3s ease;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: rgba(0, 255, 255, 0.3);
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
|
||||
animation: float 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.3;
|
||||
cursor: not-allowed;
|
||||
border-color: rgba(0, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
mat-icon {
|
||||
font-size: 24px;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Application Card */
|
||||
.application-card {
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
border-radius: 16px;
|
||||
padding: 2rem;
|
||||
backdrop-filter: blur(15px);
|
||||
border: 1px solid rgba(0, 255, 255, 0.2);
|
||||
box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
/* Profile Section */
|
||||
.profile-section {
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 2rem;
|
||||
border-bottom: 2px solid rgba(0, 255, 255, 0.2);
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.profile-image-container {
|
||||
flex-shrink: 0;
|
||||
|
||||
.profile-image {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 3px solid #00ffff;
|
||||
box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
|
||||
transition: transform 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.profile-info {
|
||||
flex: 1;
|
||||
|
||||
.candidate-name {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin: 0 0 1rem 0;
|
||||
background: linear-gradient(135deg, #00ffff, #ffffff);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
|
||||
|
||||
@media (max-width: 768px) {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.basic-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
color: #e0e0ff;
|
||||
font-size: 1rem;
|
||||
|
||||
mat-icon {
|
||||
color: #00ffff;
|
||||
font-size: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Details Grid */
|
||||
.details-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-section {
|
||||
background: rgba(0, 255, 255, 0.05);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
border: 1px solid rgba(0, 255, 255, 0.2);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 255, 255, 0.1);
|
||||
border-color: rgba(0, 255, 255, 0.4);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
&.full-width {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
h4 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
margin: 0 0 1rem 0;
|
||||
color: #00ffff;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
|
||||
mat-icon {
|
||||
font-size: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-content {
|
||||
margin: 0;
|
||||
line-height: 1.6;
|
||||
color: #e0e0ff;
|
||||
}
|
||||
}
|
||||
|
||||
/* Hobbies */
|
||||
.hobbies-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.hobby-chip {
|
||||
background: rgba(255, 0, 150, 0.2);
|
||||
color: #ff0096;
|
||||
border: 1px solid rgba(255, 0, 150, 0.4);
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(255, 0, 150, 0.3);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.back-button {
|
||||
background: transparent;
|
||||
color: #00ffff;
|
||||
border: 2px solid #00ffff;
|
||||
border-radius: 8px;
|
||||
padding: 0.75rem 1.5rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
|
||||
&:hover {
|
||||
background: rgba(0, 255, 255, 0.1);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
mat-icon {
|
||||
font-size: 18px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Loading */
|
||||
.loading-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4rem 2rem;
|
||||
text-align: center;
|
||||
min-height: 400px;
|
||||
|
||||
.loading-text {
|
||||
margin-top: 1.5rem;
|
||||
font-size: 1.1rem;
|
||||
color: #e0e0ff;
|
||||
font-weight: 600;
|
||||
text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
|
||||
/* No Data State */
|
||||
.no-data {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 4rem 2rem;
|
||||
text-align: center;
|
||||
min-height: 400px;
|
||||
|
||||
.no-data-icon {
|
||||
font-size: 4rem;
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
color: rgba(0, 255, 255, 0.4);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
color: #e0e0ff;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Raw Data Section */
|
||||
.raw-data-section {
|
||||
margin-top: 2rem;
|
||||
border-top: 2px solid rgba(0, 255, 255, 0.2);
|
||||
padding-top: 2rem;
|
||||
|
||||
summary {
|
||||
color: #00ffff;
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
padding: 0.5rem 0;
|
||||
|
||||
&:hover {
|
||||
text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
|
||||
}
|
||||
}
|
||||
|
||||
.raw-data {
|
||||
margin-top: 1rem;
|
||||
padding: 1rem;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 8px;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.4;
|
||||
color: #00ffff;
|
||||
border: 1px solid rgba(0, 255, 255, 0.2);
|
||||
overflow-x: auto;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
}.edit-controls {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
margin-top: 2rem;
|
||||
|
||||
.edit-button {
|
||||
background: #00ffff;
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
|
||||
transition: all 0.3s ease;
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 0 20px #00ffff;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
mat-icon {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.edit-info {
|
||||
color: #aaaaff;
|
||||
font-size: 0.95rem;
|
||||
font-style: italic;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user