38 lines
541 B
CSS
38 lines
541 B
CSS
/* General tab styles */
|
|
.tabs {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 20px;
|
|
margin: 0 10px;
|
|
cursor: pointer;
|
|
background-color: #f1f1f1;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.tab:hover {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.tab.active {
|
|
background-color: #ccc;
|
|
}
|
|
|
|
.tab-content {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tab-pane {
|
|
display: none;
|
|
}
|
|
|
|
.tab-pane.active {
|
|
display: block;
|
|
}
|