미디어위키

"Common.css"의 두 판 사이의 차이

North Korea Humanities

 
(같은 사용자의 중간 판 35개는 보이지 않습니다)
4번째 줄: 4번째 줄:
 
}
 
}
  
 +
/*241123*/
 +
header {
 +
    background-color: #4CAF50;
 +
    color: white;
 +
    padding: 2rem 0;
 +
}
 +
 +
header h1 {
 +
    text-align: center;
 +
    font-size: 2rem;
 +
}
 +
 +
header p {
 +
    text-align: center;
 +
    font-size: 1.2rem;
 +
    margin-top: 1rem;
 +
}
 +
 +
main {
 +
    padding: 2rem;
 +
}
  
/* Accordion 기본 스타일 */
+
.grid-container {
cdx-accordion {
+
    display: grid;
  background-color: #f9f9f9;
+
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  border-radius: 8px;
+
    gap: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+
    justify-content: center;
  margin-bottom: 10px;
 
  overflow: hidden;
 
 
}
 
}
  
/* Header 스타일링 */
+
.card {
cdx-accordion__header {
+
    background-color: white;
  background-color: #0066cc;
+
    border-radius: 10px;
  color: #ffffff;
+
    overflow: hidden;
  padding: 15px;
+
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 18px;
+
    transition: transform 0.3s ease-in-out;
  cursor: pointer;
 
  display: flex;
 
  justify-content: space-between;
 
  align-items: center;
 
  transition: background-color 0.3s ease;
 
  border: none;
 
  width: 100%;
 
 
}
 
}
  
cdx-accordion__header:hover {
+
.card:hover {
  background-color: #005bb5;
+
    transform: translateY(-10px);
 
}
 
}
  
/* 아이콘 변환 효과 */
+
.card-img {
cdx-accordion[open] .cdx-accordion__header::after {
+
    width: 100%;
  content: "▲"; /* 상징적 아이콘 */
+
    height: 200px;
  font-size: 20px;
+
    object-fit: cover;
 
}
 
}
  
cdx-accordion:not([open]) .cdx-accordion__header::after {
+
.card-body {
  content: "▼"; /* 기본 ▼ 아이콘 */
+
    padding: 1rem;
  font-size: 20px;
 
 
}
 
}
  
/* Content 스타일링 */
+
.card-title {
cdx-accordion__content {
+
    font-size: 1.5rem;
  padding: 15px;
+
    margin-bottom: 1rem;
  background-color: #f1f1f1;
+
    color: #333;
  border-top: 1px solid #ccc;
 
  font-size: 16px;
 
  line-height: 1.5;
 
  transition: max-height 0.3s ease;
 
 
}
 
}
  
/* 내용이 펼쳐졌을 때의 애니메이션 */
+
.card-description {
cdx-accordion[open] .cdx-accordion__content {
+
    font-size: 1rem;
  max-height: 500px; /* 필요에 따라 조정 */
+
    color: #555;
 +
    margin-bottom: 1.5rem;
 +
}
 +
.card-link {
 +
    text-decoration: none;
 +
    background-color: #007bff;
 +
    color: white;
 +
    padding: 0.5rem 1rem;
 +
    border-radius: 5px;
 +
    text-align: center;
 +
    display: inline-block;
 
}
 
}
  
/* 텍스트 내 기본 여백 설정 */
+
.card-link:hover {
cdx-accordion__content p {
+
    background-color: #0056b3;
  margin: 10px 0;
 
 
}
 
}

2024년 11월 26일 (화) 11:01 기준 최신판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
cite {
  box-shadow: inset 0 -20px 0 #FAFAFA;
}

/*241123*/
header {
    background-color: #4CAF50;
    color: white;
    padding: 2rem 0;
}

header h1 {
    text-align: center;
    font-size: 2rem;
}

header p {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
}

main {
    padding: 2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.card-link {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.card-link:hover {
    background-color: #0056b3;
}