미디어위키

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

North Korea Humanities

 
(같은 사용자의 중간 판 26개는 보이지 않습니다)
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 {
.tabs-container {
+
    padding: 2rem;
  font-family: Arial, sans-serif;
 
  margin: 20px;
 
  border: 1px solid #ddd;
 
  border-radius: 5px;
 
  padding: 10px;
 
  background-color: #f9f9f9;
 
 
}
 
}
  
/* 탭 버튼 스타일 */
+
.grid-container {
.tabs {
+
    display: grid;
  display: flex;
+
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-around;
+
    gap: 1.5rem;
  border-bottom: 2px solid #007BFF;
+
    justify-content: center;
  margin-bottom: 10px;
 
 
}
 
}
  
.tab-link {
+
.card {
  text-decoration: none;
+
    background-color: white;
  padding: 10px 20px;
+
    border-radius: 10px;
  font-size: 16px;
+
    overflow: hidden;
  color: #007BFF;
+
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
+
    transition: transform 0.3s ease-in-out;
  transition: background-color 0.3s;
 
  border-radius: 5px;
 
 
}
 
}
  
.tab-link:hover {
+
.card:hover {
  background-color: #e6f0ff;
+
    transform: translateY(-10px);
 
}
 
}
  
.tab-link:active {
+
.card-img {
  background-color: #e2e6ff;
+
    width: 100%;
 +
    height: 200px;
 +
    object-fit: cover;
 
}
 
}
  
.tab-link:focus {
+
.card-body {
  outline: none;
+
    padding: 1rem;
 
}
 
}
  
/* 탭 콘텐츠 영역 */
+
.card-title {
.tab-content {
+
    font-size: 1.5rem;
  display: flex;
+
    margin-bottom: 1rem;
  flex-direction: column;
+
    color: #333;
 
}
 
}
  
/* 각 탭의 콘텐츠 (숨기기) */
+
.card-description {
.tab-pane {
+
    font-size: 1rem;
  display: none;
+
    color: #555;
  padding: 15px;
+
    margin-bottom: 1.5rem;
  background-color: #f9f9f9;
 
  border-top: 1px solid #ddd;
 
 
}
 
}
 
+
.card-link {
/* #id를 통해 탭을 활성화할 때만 그 콘텐츠를 보여줍니다 */
+
    text-decoration: none;
:target {
+
    background-color: #007bff;
  display: block;
+
    color: white;
 +
    padding: 0.5rem 1rem;
 +
    border-radius: 5px;
 +
    text-align: center;
 +
    display: inline-block;
 
}
 
}
  
:target ~ .tab-content #tab1,
+
.card-link:hover {
:target ~ .tab-content #tab2,
+
    background-color: #0056b3;
:target ~ .tab-content #tab3,
 
:target ~ .tab-content #tab4,
 
:target ~ .tab-content #tab5,
 
:target ~ .tab-content #tab6,
 
:target ~ .tab-content #tab7,
 
:target ~ .tab-content #tab8,
 
:target ~ .tab-content #tab9,
 
:target ~ .tab-content #tab10 {
 
  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;
}