12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- html {
- }
- .container {
- width: 100%;
- height : 100%;
- text-align: center;
- 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;
- background-color: #1B2030;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- }
- .logo-container{
- background-color: white;
- }
- .hidden_img{
- width: 0px;
- height: 0px;
- visibility: hidden;
- }
- .progress-num {
- font-family: sans-serif;
- font-size: 150px;
- color:#24293a;
- margin-bottom: 0;
- }
- .hidden{
- visibility: hidden;
- }
- .logo{
- width:69px;
- height: 77px;
- margin-top: -12vh;
- margin-bottom: 12vh;
- opacity: 0;
- -webkit-animation: fadeIn 1s linear 0s forwards, flash 3s linear 1s infinite;
- animation: fadeIn 1s linear 0s forwards, flash 3s linear 1s infinite;
- }
- .sample-pb {
- width: 60%;
- }
- .number-pb .number-pb-shown{
- transition: all ease 0.3s;
- }
|