미디어위키

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

North Korea Humanities

(같은 사용자의 중간 판 20개는 보이지 않습니다)
4번째 줄: 4번째 줄:
 
}
 
}
  
/* Accordion 기본 스타일 */
+
/*241123 이청원 탭 제작 by. JisunKim*/
.cdx-accordion {
+
.tabs-container {
   background-color: #fff; /* 흰색 배경 */
+
   font-family: Arial, sans-serif;
   border: 1px solid #ddd; /* 얇은 회색 테두리 */
+
  margin: 20px;
   border-radius: 10px; /* 부드러운 둥근 모서리 */
+
   border: 1px solid #ddd;
  margin-bottom: 15px;
+
   border-radius: 5px;
   overflow: hidden;
+
   background-color: #fff;  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
 
 
}
 
}
  
 +
.tabs {
 +
  display: flex;
 +
  justify-content: space-between;
 +
  margin-bottom: 10px;
 +
  background-color: #007BFF;
 +
  border-radius: 5px 5px 0 0;
 +
}
 +
 +
.tab-link {
 +
  text-decoration: none;
 +
  padding: 12px 20px;
 +
  font-size: 16px;
 +
  font-weight: bold;
 +
  color: #fff;
 +
  background-color: #007BFF; /* 탭 배경 */
 +
  border-radius: 5px 5px 0 0;
 +
  border: 2px solid #007BFF; /* 테두리 */
 +
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
 +
  margin: 0 8px; /* 탭 버튼 사이 여백 */
 +
  flex-grow: 1;
 +
  text-align: center;
 +
}
 +
 +
.tab-link:hover {
 +
  background-color: #0062cc;
 +
}
 +
 +
.tab-link:active, .tab-link:focus, .tab-link:target {
 +
  background-color: #fff; 
 +
  color: #007BFF; 
 +
  border-color: #007BFF;
 +
}
 +
 +
.tab-content {
 +
  display: flex;
 +
  flex-direction: column;
 +
  padding: 10px 0;
 +
}
 +
 +
.tab-pane {
 +
  display: none;
 +
  padding: 15px;
 +
  background-color: #fff;
 +
  border: 1px solid #fff;
 +
  border-radius: 5px;
 +
  margin-top: 10px;
 +
}
 +
 +
:target {
 +
  display: block;
 +
}
 +
 +
:target ~ .tab-content #tab1,
 +
:target ~ .tab-content #tab2,
 +
:target ~ .tab-content #tab3,
 +
:target ~ .tab-content #tab4 {
 +
  display: block;
 +
}
 +
 +
 +
/*241123 이청원 자료실 제작 by. JisunKim*/
 +
 
/* 헤더 스타일 */
 
/* 헤더 스타일 */
.cdx-accordion__header {
+
header {
  background-color: #007BFF; /* 파란색 배경 */
+
    background-color: #4CAF50;
  color: #fff; /* 흰색 글씨 */
+
    color: white;
  padding: 16px 20px; /* 상하좌우 여백 */
+
    padding: 2rem 0;
  font-size: 18px; /* 글자 크기 */
+
}
  font-weight: bold; /* 굵은 글씨 */
+
 
  cursor: pointer;
+
header h1 {
  display: flex;
+
    text-align: center;
  justify-content: space-between; /* 왼쪽: 제목, 오른쪽: 아이콘 */
+
    font-size: 2rem;
  align-items: center;
+
}
  transition: background-color 0.3s ease, padding 0.2s ease;
+
 
  border: none;
+
header p {
  width: 100%;
+
    text-align: center;
  border-radius: 10px;
+
    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);
 
}
 
}
  
/* 헤더가 hover될 때 색상 변화 */
+
.card-img {
.cdx-accordion__header:hover {
+
    width: 100%;
  background-color: #0056b3; /* 클릭 전 배경 색 변경 */
+
    height: 200px;
 +
    object-fit: cover;
 
}
 
}
  
/* 아코디언 펼침/접힘 아이콘 */
+
.card-body {
.cdx-accordion__header::after {
+
    padding: 1rem;
  content: "▼"; /* 기본 ▼ 아이콘 */
 
  font-size: 18px;
 
  transition: transform 0.3s ease; /* 회전 애니메이션 */
 
 
}
 
}
  
/* 펼쳐졌을 때 아이콘 회전 */
+
.card-title {
.cdx-accordion[open] .cdx-accordion__header::after {
+
    font-size: 1.5rem;
  content: "▲"; /* ▲ 아이콘 */
+
    margin-bottom: 1rem;
  transform: rotate(180deg); /* 아이콘 회전 */
+
    color: #333;
 
}
 
}
  
/* 아코디언 내용 스타일 */
+
.card-description {
.cdx-accordion__content {
+
    font-size: 1rem;
  padding: 20px;
+
    color: #555;
  background-color: #f9f9f9; /* 배경 색 */
+
    margin-bottom: 1.5rem;
  font-size: 16px; /* 글씨 크기 */
 
  line-height: 1.5; /* 줄 간격 */
 
  color: #333; /* 기본 텍스트 색 */
 
  border-top: 1px solid #eee; /* 아코디언 구분선 */
 
  overflow: hidden;
 
  max-height: 0; /* 기본적으로 숨기기 */
 
  transition: max-height 0.3s ease, padding 0.3s ease; /* 애니메이션 */
 
 
}
 
}
  
/* 내용이 펼쳐졌을 때 */
+
.card-link {
.cdx-accordion[open] .cdx-accordion__content {
+
    text-decoration: none;
  max-height: 500px; /* 최대 높이 */
+
    background-color: #007bff;
  padding-top: 20px;
+
    color: white;
  padding-bottom: 20px;
+
    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;
 
 
}
 
}
  
/* 아이콘이 있는 링크 스타일 */
+
 
.cdx-accordion__content a {
+
/*241123 이청원 저작집 by Jisun Kim*/
  color: #007BFF;
+
 
  text-decoration: none;
+
.card2-link {
  font-weight: bold;
+
    text-decoration: none;
 +
    background-color: #006400;
 +
    color: white;
 +
    padding: 0.5rem 1rem;
 +
    border-radius: 5px;
 +
    text-align: center;
 +
    display: inline-block;
 
}
 
}
  
.cdx-accordion__content a:hover {
+
.card2-link:hover {
  color: #0056b3;
+
    background-color: #808000;
 
}
 
}

2024년 11월 23일 (토) 18:45 판

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

/*241123 이청원 탭 제작 by. JisunKim*/
.tabs-container {
  font-family: Arial, sans-serif;
  margin: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff; 
}

.tabs {
  display: flex;
  justify-content: space-between; 
  margin-bottom: 10px;
  background-color: #007BFF; 
  border-radius: 5px 5px 0 0; 
}

.tab-link {
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff; 
  background-color: #007BFF; /* 탭 배경 */
  border-radius: 5px 5px 0 0; 
  border: 2px solid #007BFF; /* 테두리 */
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  margin: 0 8px; /* 탭 버튼 사이 여백 */
  flex-grow: 1;
  text-align: center; 
}

.tab-link:hover {
  background-color: #0062cc;
}

.tab-link:active, .tab-link:focus, .tab-link:target {
  background-color: #fff;  
  color: #007BFF;  
  border-color: #007BFF; 
}

.tab-content {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.tab-pane {
  display: none;
  padding: 15px;
  background-color: #fff; 
  border: 1px solid #fff; 
  border-radius: 5px;
  margin-top: 10px;
}

:target {
  display: block;
}

:target ~ .tab-content #tab1,
:target ~ .tab-content #tab2,
:target ~ .tab-content #tab3,
:target ~ .tab-content #tab4 {
  display: block;
}


/*241123 이청원 자료실 제작 by. JisunKim*/
 
/* 헤더 스타일 */
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;
}


/*241123 이청원 저작집 by Jisun Kim*/

.card2-link {
    text-decoration: none;
    background-color: #006400;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.card2-link:hover {
    background-color: #808000;
}