미디어위키

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

North Korea Humanities

 
(같은 사용자의 중간 판 21개는 보이지 않습니다)
4번째 줄: 4번째 줄:
 
}
 
}
  
/* 기본 컨테이너 스타일 */
+
/*241123*/
.tabs-container {
+
header {
  font-family: Arial, sans-serif;
+
    background-color: #4CAF50;
  margin: 20px;
+
    color: white;
  border: 1px solid #ddd;
+
    padding: 2rem 0;
  border-radius: 5px;
 
  background-color: #fff; /* 컨테이너 배경 흰색 */
 
 
}
 
}
  
/* 탭 버튼들 */
+
header h1 {
.tabs {
+
    text-align: center;
  display: flex;
+
    font-size: 2rem;
  justify-content: space-between; /* 탭 버튼들 사이에 여백을 넣습니다 */
 
  margin-bottom: 10px;
 
  background-color: #007BFF; /* 탭 버튼 배경 파란색 */
 
  border-radius: 5px 5px 0 0; /* 탭 버튼 위쪽 둥글게 */
 
 
}
 
}
  
/* 기본 탭 버튼 스타일 */
+
header p {
.tab-link {
+
    text-align: center;
  text-decoration: none;
+
    font-size: 1.2rem;
  padding: 12px 20px;
+
    margin-top: 1rem;
  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; /* 탭 텍스트 중앙 정렬 */
 
 
}
 
}
  
/* 탭 버튼의 hover 효과 */
+
main {
.tab-link:hover {
+
    padding: 2rem;
  background-color: #0062cc; /* hover 시 배경색 진한 파란색 */
 
 
}
 
}
  
/* 클릭된 탭 스타일 */
+
.grid-container {
.tab-link:active, .tab-link:focus, .tab-link:target {
+
    display: grid;
  background-color: #fff; /* 클릭시 배경색 흰색 */
+
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  color: #007BFF; /* 클릭시 글씨 색 파란색 */
+
    gap: 1.5rem;
  border-color: #007BFF; /* 테두리 파란색 */
+
    justify-content: center;
 
}
 
}
  
/* 탭 콘텐츠 영역 */
+
.card {
.tab-content {
+
    background-color: white;
  display: flex;
+
    border-radius: 10px;
  flex-direction: column;
+
    overflow: hidden;
  padding: 10px 0;
+
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 +
    transition: transform 0.3s ease-in-out;
 
}
 
}
  
/* 각 탭의 콘텐츠 (기본적으로 숨김 처리) */
+
.card:hover {
.tab-pane {
+
    transform: translateY(-10px);
  display: none;
 
  padding: 15px;
 
  background-color: #fff; /* 회색 배경 */
 
  border: 1px solid #ddd; /* 회색 테두리 */
 
  border-radius: 5px;
 
  margin-top: 10px;
 
 
}
 
}
  
/* 선택된 탭 콘텐츠만 보이도록 처리 */
+
.card-img {
:target {
+
    width: 100%;
  display: block;
+
    height: 200px;
 +
    object-fit: cover;
 
}
 
}
  
/* 각 탭 콘텐츠가 선택된 경우에만 보여지도록 처리 */
+
.card-body {
:target ~ .tab-content #tab1,
+
    padding: 1rem;
:target ~ .tab-content #tab2,
+
}
:target ~ .tab-content #tab3,
+
 
:target ~ .tab-content #tab4,
+
.card-title {
:target ~ .tab-content #tab5,
+
    font-size: 1.5rem;
:target ~ .tab-content #tab6,
+
    margin-bottom: 1rem;
:target ~ .tab-content #tab7,
+
    color: #333;
:target ~ .tab-content #tab8,
+
}
:target ~ .tab-content #tab9,
+
 
:target ~ .tab-content #tab10 {
+
.card-description {
  display: block;
+
    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;
 
}
 
}

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