generated from Templates_CodeFirst/templateHtmlCss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
2.8 KiB
158 lines
2.8 KiB
.projects-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.project-card {
|
|
background-color: var(--bg-color);
|
|
border-radius: 1rem;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
|
transition: var(--transition);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.project-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.project-image {
|
|
width: 100%;
|
|
height: 250px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.project-card:hover .project-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.project-content {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.project-content h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.project-content p {
|
|
color: var(--gray-dark);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.project-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.project-tags span {
|
|
background-color: var(--gray-light);
|
|
color: var(--primary-color);
|
|
padding: 0.4rem 0.8rem;
|
|
border-radius: 2rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Modal */
|
|
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
z-index: 1100;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal-content {
|
|
position: relative;
|
|
background-color: var(--bg-color);
|
|
margin: 2rem auto;
|
|
padding: 2rem;
|
|
width: 90%;
|
|
max-width: 800px;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.modal-close {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
font-size: 1.5rem;
|
|
background: none;
|
|
border: none;
|
|
color: var(--gray-dark);
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.modal-close:hover {
|
|
color: var(--primary-color);
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.modal-image {
|
|
width: 100%;
|
|
height: 300px;
|
|
object-fit: cover;
|
|
border-radius: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.modal-description {
|
|
color: var(--gray-dark);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.6;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.modal-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.modal-tags span {
|
|
background-color: var(--gray-light);
|
|
color: var(--primary-color);
|
|
padding: 0.4rem 0.8rem;
|
|
border-radius: 2rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.modal-link {
|
|
display: inline-block;
|
|
padding: 0.8rem 1.5rem;
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 0.5rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.modal-link:hover {
|
|
background-color: var(--accent-color);
|
|
transform: translateY(-2px);
|
|
} |