미디어위키

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

North Korea Humanities

 
(같은 사용자의 중간 판 28개는 보이지 않습니다)
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;
 +
}
  
/* 기본 탭 컨테이너 스타일 */
+
.grid-container {
.tabs-container {
+
    display: grid;
  font-family: Arial, sans-serif;
+
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  border: 1px solid #ccc;
+
    gap: 1.5rem;
  padding: 10px;
+
    justify-content: center;
 
}
 
}
  
/* 라디오 버튼을 숨기기 */
+
.card {
.tab-input {
+
    background-color: white;
  display: none;
+
    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 {
.tab-label {
+
    transform: translateY(-10px);
  background-color: #f8f8f8;
 
  border: 1px solid #ccc;
 
  padding: 10px 15px;
 
  cursor: pointer;
 
  font-size: 16px;
 
  border-radius: 5px;
 
  display: inline-block;
 
  margin-right: 5px;
 
  transition: background-color 0.3s;
 
  user-select: none;
 
 
}
 
}
  
.tab-label:hover {
+
.card-img {
  background-color: #e2e2e2;
+
    width: 100%;
 +
    height: 200px;
 +
    object-fit: cover;
 
}
 
}
  
/* 선택된 탭 스타일 */
+
.card-body {
.tab-input:checked + .tab-label {
+
    padding: 1rem;
  background-color: #007BFF;
 
  color: white;
 
  border-color: #007BFF;
 
 
}
 
}
  
/* 탭 콘텐츠 영역 스타일 */
+
.card-title {
.tab-content {
+
    font-size: 1.5rem;
  margin-top: 10px;
+
    margin-bottom: 1rem;
  border-top: 2px solid #007BFF;
+
    color: #333;
  padding: 10px;
 
  background-color: #f9f9f9;
 
 
}
 
}
  
/* 탭 콘텐츠 (숨기기 및 표시) */
+
.card-description {
.tab-pane {
+
    font-size: 1rem;
  display: none;
+
    color: #555;
  padding: 15px;
+
    margin-bottom: 1.5rem;
  background-color: #f9f9f9;
+
}
  border-top: 1px solid #ccc;
+
.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 {
#tab1:checked ~ .tab-content #content1,
+
    background-color: #0056b3;
#tab2:checked ~ .tab-content #content2,
 
#tab3:checked ~ .tab-content #content3,
 
#tab4:checked ~ .tab-content #content4,
 
#tab5:checked ~ .tab-content #content5,
 
#tab6:checked ~ .tab-content #content6,
 
#tab7:checked ~ .tab-content #content7,
 
#tab8:checked ~ .tab-content #content8,
 
#tab9:checked ~ .tab-content #content9,
 
#tab10:checked ~ .tab-content #content10 {
 
  display: block;
 
 
}
 
}

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;
}