미디어위키

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

North Korea Humanities

 
(같은 사용자의 중간 판 31개는 보이지 않습니다)
4번째 줄: 4번째 줄:
 
}
 
}
  
 +
/*241123*/
 +
header {
 +
    background-color: #4CAF50;
 +
    color: white;
 +
    padding: 2rem 0;
 +
}
  
/* 기본 스타일 */
+
header h1 {
tabs-container {
+
    text-align: center;
  font-family: Arial, sans-serif;
+
    font-size: 2rem;
  border: 1px solid #ccc;
 
  padding: 10px;
 
 
}
 
}
  
tab-input {
+
header p {
  display: none; /* 라디오 버튼 숨기기 */
+
    text-align: center;
 +
    font-size: 1.2rem;
 +
    margin-top: 1rem;
 
}
 
}
  
tab-label {
+
main {
  background-color: #f8f8f8;
+
    padding: 2rem;
  border: 1px solid #ccc;
 
  padding: 10px 15px;
 
  cursor: pointer;
 
  font-size: 16px;
 
  border-radius: 5px;
 
  transition: background-color 0.3s;
 
  display: inline-block;
 
  margin-right: 5px;
 
 
}
 
}
  
tab-label:hover {
+
.grid-container {
  background-color: #e2e2e2;
+
    display: grid;
 +
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
 +
    gap: 1.5rem;
 +
    justify-content: center;
 
}
 
}
  
tab-input:checked + .tab-label {
+
.card {
  background-color: #007BFF;
+
    background-color: white;
  color: white;
+
    border-radius: 10px;
  border-color: #007BFF;
+
    overflow: hidden;
 +
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 +
    transition: transform 0.3s ease-in-out;
 
}
 
}
  
tab-content {
+
.card:hover {
  margin-top: 10px;
+
    transform: translateY(-10px);
 
}
 
}
  
tab-pane {
+
.card-img {
  display: none;
+
    width: 100%;
  padding: 15px;
+
    height: 200px;
  background-color: #f9f9f9;
+
    object-fit: cover;
  border-top: 1px solid #ccc;
 
 
}
 
}
  
tab-input:checked + .tab-label + .tab-content .tab-pane {
+
.card-body {
  display: block;
+
    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;
 +
}
  
#tab1:checked ~ .tab-content #content1,
+
.card-link:hover {
#tab2:checked ~ .tab-content #content2,
+
    background-color: #0056b3;
#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;
}