62 lines
1.2 KiB
CSS
62 lines
1.2 KiB
CSS
.tech-section-module {
|
|
padding: 30px; /* 모듈 전체 여백 */
|
|
background-color: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.tech-section-module h2 {
|
|
font-size: 1.8rem; /* 제목 크기 증가 */
|
|
font-weight: 700;
|
|
margin-bottom: 20px; /* 여백 증가 */
|
|
color: #222;
|
|
border-bottom: 2px solid #0056b3; /* 하단 테두리 */
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.tech-section-module ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.tech-section-module li {
|
|
margin-bottom: 10px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px dashed #eee;
|
|
}
|
|
|
|
.tech-section-module li:last-child {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.tech-section-module li a {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
color: #555;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.tech-section-module li a:hover {
|
|
color: #0056b3;
|
|
}
|
|
|
|
.tech-section-module li a strong {
|
|
flex-grow: 1;
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.tech-section-module li a .datetime {
|
|
flex-shrink: 0;
|
|
font-size: 0.85rem;
|
|
color: #888;
|
|
margin-left: 10px;
|
|
}
|