59 lines
851 B
CSS
Raw Normal View History

2024-05-15 15:57:45 +08:00
.hide-style {
display: none;
height: 0;
width: 0;
}
.centerdiv {
display: flex;
justify-content: center;
}
2024-10-26 16:15:41 +08:00
.centertext {
text-align: center;
}
2024-05-15 15:57:45 +08:00
.centerdiv img {
max-width: 100%;
height: auto;
}
.example-div {
2024-05-25 01:37:53 +08:00
text-align: center;
2024-05-15 15:57:45 +08:00
font-family: BIZ UDGothic;
font-size: 24px;
text-align: center;
}
.remark-div {
font-family: BIZ UDGothic;
font-size: 22px;
}
.ruby-div {
font-family: BIZ UDGothic;
font-size: 48px;
cursor: pointer;
}
.tab-widget .tab-button {
padding: 10px 20px;
2024-06-02 22:45:40 +08:00
background-color: #cccccccc;
2024-05-15 15:57:45 +08:00
border: none;
cursor: pointer;
display: inline-block;
}
.tab-widget .tab-button.active {
2024-06-02 22:45:40 +08:00
background-color: #f0f0f050;
2024-05-15 15:57:45 +08:00
}
.tab-widget .tab-content .tab-pane {
display: none;
}
.tab-widget .tab-content .tab-pane.active {
display: block;
}