123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*!
- * WeUI v2.3.0 (https://github.com/weui/weui-wxss)
- * Copyright 2020 Tencent, Inc.
- * Licensed under the MIT license
- */
- /* @import '../components/weui-wxss/dist/style/weui.wxss'; */
- page {
- height: 100%;
- display: flex;
- justify-content: center;
- }
- .page {
- min-height: 100%;
- background-color: var(--weui-BG-1);
- color: var(--weui-FG-0);
- font-size: 16px;
- font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
- max-width: 600px;
- }
- image {
- max-width: 100%;
- max-height: 100%
- }
- .link {
- display: inline;
- color: var(--weui-LINK)
- }
- .fadeIn {
- -webkit-animation: a .3s forwards;
- animation: a .3s forwards
- }
- .fadeOut {
- -webkit-animation: b .3s forwards;
- animation: b .3s forwards
- }
- @-webkit-keyframes a {
- 0% {
- opacity: 0
- }
- to {
- opacity: 1
- }
- }
- @keyframes a {
- 0% {
- opacity: 0
- }
- to {
- opacity: 1
- }
- }
- @-webkit-keyframes b {
- 0% {
- opacity: 1
- }
- to {
- opacity: 0
- }
- }
- @keyframes b {
- 0% {
- opacity: 1
- }
- to {
- opacity: 0
- }
- }
- .weui-msg__extra-area {
- position: static
- }
- .page__hd {
- padding: 40px
- }
- .page__bd {
- padding-bottom: 40px
- }
- .page__bd_spacing {
- padding-left: 15px;
- padding-right: 15px
- }
- .page__ft {
- padding-top: 40px;
- padding-bottom: 10px;
- padding-bottom: calc(10px + constant(safe-area-inset-bottom));
- padding-bottom: calc(10px + env(safe-area-inset-bottom));
- text-align: center
- }
- [data-weui-theme=dark] .page__ft image {
- -webkit-filter: invert(100) hue-rotate(180deg);
- filter: invert(100) hue-rotate(180deg)
- }
- .page__title {
- text-align: left;
- font-size: 20px;
- font-weight: 400
- }
- .page__desc {
- margin-top: 5px;
- color: var(--weui-FG-1);
- text-align: left;
- font-size: 14px
- }
- .weui-cell_example:before {
- left: 52px
- }
- @media (prefers-color-scheme: dark) {
- page {
- background-color: #1F1F1F;
- }
- }
|