| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- * {
- font-family: 'SY-medium';
- }
- img {
- -webkit-user-drag: none;
- }
- .ui-button {
- height: 50px;
- line-height: 1;
- border-radius: 25px;
- border: none;
- background-color: transparent;
- text-align: center;
- letter-spacing: 1px;
- outline: none;
- white-space: nowrap;
- cursor: pointer;
- }
- .ui-button.default {
- background-color: #CCCCCC;
- color: #333333;
- }
- .ui-button.submit {
- color: #fff;
- background-color: #BC1915;
- }
- .ui-button.cancel {
- color: #05c8ae;
- background-color: transparent;
- }
- .ui-button.block {
- width: 100%;
- }
- .ui-button.link {
- display: inline-block;
- text-decoration: none;
- }
- .ui-button.danger {
- background-color: #c80303;
- color: #fff;
- }
- .ui-input {
- padding: 0 14px;
- color: #fff;
- letter-spacing: 1px;
- height: 50px;
- line-height: 50px;
- width: 100%;
- background: rgba(204, 204, 204, 0.2);
- border: 1px solid #FFB521;
- border-radius: 25px;
- }
- input::-webkit-input-placeholder {
- color: #fff;
- }
- input::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #fff;
- }
- input:-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #fff;
- }
- input:-ms-input-placeholder {
- /* Internet Explorer 10-11 */
- color: #fff;
- }
- .cad {
- position: fixed;
- right: 10px;
- top: 130px;
- width: 280px;
- height: 150px;
- z-index: 999;
- transition: 0.3s ease all;
- }
- .cad #cad {
- width: 100%;
- height: 100%;
- margin-top: -20px;
- }
- @media only screen and (max-width: 487px), (max-height: 487px),(orientation: portrait) {
- .cad {
- position: fixed;
- top: 38%;
- left: 50%;
- transform: translate(-150%, -50%);
- width: 280px;
- height: 150px;
- z-index: 999;
- transition: none;
- }
- .cad #cad {
- width: 100%;
- height: 100%;
- }
- .ui-input {
- padding: 0 14px;
- color: #fff;
- letter-spacing: 0;
- height: 34px;
- line-height: 34px;
- width: 100%;
- background: rgba(0, 0, 0, 0.8);
- border: 1px solid #FFB521;
- border-radius: 17px;
- }
- }
- .no-record {
- text-align: center;
- margin: 28vh auto;
- }
|