123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- * {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- outline: none;
- }
- html,
- body {
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- }
- #app {
- width: 100vw;
- height: 100vh;
- position: absolute;
- transform-origin: 50% 50%;
- }
- .message-wrap {
- position: fixed;
- top: 50px;
- left: 0;
- right: 0;
- justify-content: center;
- font-size: 13px;
- z-index: 20;
- display: none;
- }
- .message-wrap .body {
- display: flex;
- width: fit-content;
- background-color: #ffffff;
- color: rgba(0, 0, 0, 0.9);
- box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 30px 5px,
- rgba(0, 0, 0, 0.04) 0px 16px 24px 2px, rgba(0, 0, 0, 0.08) 0px 8px 10px -5px,
- rgb(220, 220, 220) 0px 0.5px 0px 0px inset,
- rgb(220, 220, 220) 0.5px 0px 0px 0px inset,
- rgb(220, 220, 220) 0px -0.5px 0px 0px inset,
- rgb(220, 220, 220) -0.5px 0px 0px 0px inset;
- box-sizing: border-box;
- border-radius: 6px;
- padding: 12px 16px;
- }
- .message-wrap svg {
- color: rgb(213, 73, 65);
- fill: rgb(213, 73, 65);
- margin-right: 8px;
- font-size: 16px;
- margin-top: 2px;
- }
- .login-wrap {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- justify-content: center;
- align-items: center;
- font-size: 14px;
- z-index: 10;
- display: none;
- text-align: center;
- }
- .login-wrap .body {
- margin-top: -100px;
- width: fit-content;
- background-color: #ffffff;
- color: rgba(0, 0, 0, 0.9);
- box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 30px 5px,
- rgba(0, 0, 0, 0.04) 0px 16px 24px 2px, rgba(0, 0, 0, 0.08) 0px 8px 10px -5px,
- rgb(220, 220, 220) 0px 0.5px 0px 0px inset,
- rgb(220, 220, 220) 0.5px 0px 0px 0px inset,
- rgb(220, 220, 220) 0px -0.5px 0px 0px inset,
- rgb(220, 220, 220) -0.5px 0px 0px 0px inset;
- box-sizing: border-box;
- border-radius: 6px;
- padding: 20px;
- }
- .login-wrap .head {
- font-size: 24px;
- line-height: 2;
- margin-bottom: 12px;
- }
- .login-wrap input {
- line-height: 1;
- margin-bottom: 12px;
- display: block;
- width: 300px;
- padding: 10px 12px;
- background: none;
- outline: none;
- border-radius: 2px;
- border: 1px solid #cccccc;
- }
- .login-wrap input:hover,
- .login-wrap input:focus {
- border-color: #4583ff;
- }
- .login-wrap button {
- line-height: 1;
- display: block;
- width: 300px;
- padding: 12px;
- background: #0c56eb;
- color: #ffffff;
- outline: none;
- border-radius: 2px;
- border: none;
- cursor: pointer;
- margin-bottom: 20px;
- }
- .login-wrap button:hover,
- .login-wrap button:focus {
- background: #4583ff;
- }
|