|
html { |
|
height: 100%; |
|
margin: 0; |
|
padding: 0; |
|
background-color: rgb(33, 33, 33); |
|
color: whitesmoke; |
|
} |
|
|
|
a { |
|
color: whitesmoke; |
|
|
|
} |
|
|
|
.table-container { |
|
width: 70%; |
|
height: 100%; |
|
overflow: auto; |
|
} |
|
|
|
table { |
|
width: 100%; |
|
border-collapse: collapse; |
|
} |
|
|
|
th, |
|
td { |
|
padding: 10px; |
|
text-align: left; |
|
} |
|
|
|
th { |
|
background-color: rgb(45, 45, 45); |
|
|
|
font-weight: bold; |
|
} |
|
|
|
tr:nth-child(even) { |
|
background-color: rgb(45, 45, 45); |
|
|
|
} |
|
|
|
tr:hover { |
|
background-color: #797979; |
|
|
|
} |
|
|
|
td:nth-child(2) { |
|
|
|
width: 80%; |
|
|
|
word-wrap: break-word; |
|
|
|
} |
|
|
|
.mtb_logo { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
} |
|
|
|
|
|
.table-container::-webkit-scrollbar { |
|
width: 10px; |
|
|
|
} |
|
|
|
.table-container::-webkit-scrollbar-thumb { |
|
background-color: #797979; |
|
|
|
} |
|
|
|
|
|
.table-container { |
|
scrollbar-width: thin; |
|
|
|
} |
|
|
|
.table-container::-webkit-scrollbar-thumb { |
|
background-color: #797979; |
|
|
|
} |
|
|
|
|
|
.table-container::-webkit-scrollbar-track { |
|
background-color: #f2f2f2; |
|
} |
|
|
|
|
|
|
|
body { |
|
margin: 0; |
|
padding: 0; |
|
font-family: monospace; |
|
height: 100%; |
|
background-color: rgb(33, 33, 33); |
|
|
|
} |
|
|
|
.title { |
|
font-size: 2.5em; |
|
font-weight: 700; |
|
|
|
} |
|
|
|
header { |
|
display: flex; |
|
align-items: center; |
|
vertical-align: middle; |
|
justify-content: space-between; |
|
background-color: rgb(12, 12, 12); |
|
padding: 1em; |
|
margin: 0; |
|
} |
|
|
|
main { |
|
display: flex; |
|
align-items: center; |
|
vertical-align: middle; |
|
justify-content: center; |
|
padding: 1em; |
|
margin: 0; |
|
|
|
} |
|
|
|
.flex-container { |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
.menu { |
|
font-size: 3em; |
|
text-align: center; |
|
} |
|
|
|
input, button, textarea { |
|
background-color: rgba(0,0,0,0.5); |
|
color: white; |
|
border: none; |
|
} |
|
|
|
button:hover { |
|
background-color: rgba(0,0,0,0.3); |
|
|
|
} |
|
button { |
|
padding: 14px 16px; |
|
|
|
} |
|
|
|
|
|
#style-editor { |
|
display: flex; |
|
flex-direction: column; |
|
width:100%; |
|
|
|
} |
|
|
|
#style-editor > table { |
|
|
|
width:100%; |
|
} |
|
#style-editor input, #style-editor textarea { |
|
|
|
width:100%; |
|
} |
|
|
|
#style-editor td{ |
|
width: 33.33%; |
|
} |
|
|
|
|
|
|
|
.tab { |
|
overflow: hidden; |
|
width: 100%; |
|
display: flex; |
|
flex-direction: row; |
|
|
|
} |
|
|
|
.tab-container{ |
|
width: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
|
|
.tab button { |
|
background-color: transparent; |
|
color:white; |
|
float: left; |
|
border: none; |
|
outline: none; |
|
cursor: pointer; |
|
padding: 14px 16px; |
|
transition: 0.3s; |
|
width:100%; |
|
font-size: 1.5em; |
|
} |
|
|
|
.tab button.active { |
|
background-color: #2e2e2e; |
|
} |
|
|
|
.tabcontent { |
|
display: none; |
|
} |
|
|
|
.tabcontent.active { |
|
display: block; |
|
} |
|
|
|
|
|
|
|
.foldable-title { |
|
cursor: pointer; |
|
font-weight: bold; |
|
user-select: none; |
|
} |
|
|
|
.foldable-symbol { |
|
margin-right: 10px; |
|
} |
|
|
|
.foldable-content { |
|
display: none; |
|
flex-direction: column; |
|
margin-left: 20px; |
|
} |
|
|