chore(style): add content tab formatting

!1
This commit is contained in:
2024-05-14 04:09:56 +09:30
parent 857aa7af72
commit 4582c955b8
3 changed files with 45 additions and 2 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@ venv/**
__pycache__
**db.sqlite3
**.coverage
artifacts/
artifacts/
**itam/

View File

@ -106,3 +106,45 @@ input[type=submit] {
cursor: pointer;
}
/* Style the tab */
.tab {
display: block;
overflow: hidden;
border-bottom: 1px solid #ccc;
/* background-color: #f1f1f1; */
width: 100%;
text-align: left;
}
/* Style the buttons that are used to open the tab content */
.tab button {
display: inline;
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: inherit;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
width: 100%;
display: none;
padding: 6px 12px;
border: none;
border-top: none;
}

View File

@ -8,7 +8,7 @@ tr {
}
td {
border-bottom: 1px solid #08f008;
border-bottom: 1px solid #ccc;
padding: 20px;
}