123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .number-pb {
- position: relative;
- height: 1px;
- background-color: #1B2030;
- margin: 40px 0;
- display: -webkit-box;
- display: -moz-box;
- display: -webkit-flex;
- display: -moz-flex;
- display: -ms-flexbox;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .number-pb .number-pb-shown {
- background-color: #DBEDF3;
- background-image: linear-gradient(to right, #4d9bbf, #4d9bbf);
- height: 1px;
- -moz-box-shadow: 0 0 3px 0 #4d9bbf;
- -webkit-box-shadow: 0 0 3px 0 #4d9bbf;
- box-shadow: 0 0 3px 0 #4d9bbf;
- }
- .number-pb .number-pb-num {
- position: absolute;
- background-color: #fff;
- left: 0;
- top: -0.45em;
- padding: 0 5px;
- min-width: 50px;
- visibility: hidden;
- }
- .number-pb-shown.dream {
- background-image: linear-gradient(to right, #0e153a, #1d2b64, #f8cdda);
- -moz-box-shadow: 0 0 3px 0 #f8cdda;
- -webkit-box-shadow: 0 0 3px 0 #f8cdda;
- box-shadow: 0 0 3px 0 #f8cdda;
- }
- .number-pb-shown.sun {
- background-image: linear-gradient(to right, #0f1b58, #e0a681, #e5e9bf);
- -moz-box-shadow: 0 0 3px 0 #e5e9bf;
- -webkit-box-shadow: 0 0 3px 0 #e5e9bf;
- box-shadow: 0 0 3px 0 #e5e9bf;
- }
|