| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- #search_result {
- position: absolute;
- background: wheat;
- max-width: 95%;
- width: 24em;
- }
- .icon {
- width: 15px;
- height: 15px;
- }
- .submenu_title {
- font-size: 120%;
- font-weight: 700;
- }
- #head_bar {
- display: flex;
- justify-content: space-between;
- /*height: 5em;*/
- background-color: var(--tool-bg-color1);
- border-bottom: 1px solid var(--tool-line-color);
- padding: 0.5vh 0.5vw;
- margin-top: 50px;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 100;
- }
- #pali_pedia {
- font-size: 200%;
- margin-top: auto;
- margin-bottom: auto;
- padding-left: 0.5em;
- }
- .main_view {
- padding: 0 1em;
- padding-top: 7em;
- max-width: 1280px;
- margin-left: auto;
- margin-right: auto;
- }
- .fun_frame {
- border-bottom: 1px solid gray;
- margin-right: 10px;
- margin-bottom: 10px;
- }
- .fun_frame .title {
- padding: 6px;
- font-weight: 700;
- }
- .fun_frame > .content {
- padding: 6px;
- max-height: 6em;
- overflow-y: scroll;
- }
- .fixed {
- position: fixed;
- right: 0;
- top: 0;
- }
- .when_right_fixed {
- padding-right: 20em;
- }
- #contents_view {
- display: flex;
- }
- #contents_div {
- flex: 7;
- padding: 0 1em 0 30px;
- width: 70vw;
- }
- #contents {
- min-height: 400px;
- }
- #contents li {
- white-space: normal;
- }
- #right_pannal {
- flex: 3;
- }
- #head_bar {
- height: unset;
- }
- #contents_foot {
- margin-bottom: 70vh;
- }
- #toc_content .level_2 {
- padding-left: 0.5em;
- }
- #toc_content .level_3 {
- padding-left: 1em;
- }
- #toc_content .level_4 {
- padding-left: 1.5em;
- }
- #toc_content .level_5 {
- padding-left: 2em;
- }
- .ui-dialog-titlebar {
- display: flex;
- justify-content: space-between;
- background-color: var(--btn-bg-color);
- padding: 5px;
- }
- .ui-widget-content {
- background-color: var(--bg-color);
- }
- .ui-dialog {
- box-shadow: 8px 8px 20px var(--border-shadow);
- }
- .active {
- background-color: var(--btn-hover-bg-color);
- }
- .icon_btn a {
- color: var(--main-color);
- }
- .icon_btn:hover a {
- color: var(--btn-hover-color);
- }
- .tran img {
- max-width: 100%;
- max-height: 200px;
- width: auto;
- height: auto;
- object-fit: cover;
- background-size: contain;
- }
- .channal_list {
- white-space: nowrap;
- overflow-x: hidden;
- }
- .userinfo_channal {
- display: none;
- }
- .userinfo_channal:hover {
- display: block;
- }
- img {
- width: 90vw;
- max-width: 40em;
- }
- /*
- 左右对读
- .note_shell {
- display: flex;
- }
- .note_shell > .palitext{
- flex: 5;
- }
- .note_shell>note {
- flex: 5;
- }
- */
- .tool_bar {
- display: flex;
- }
|