1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*style for demo*/
- //variable
- @sidebar-width: 210px;
- @nav-height: 60px;
- body{
- background-color: #f7f7f7;
- -webkit-user-select: text;
- }
- img{
- border-radius: 4px;
- }
- .vm-margin{
- margin-top: 15px;
- }
- .demo-news{
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .panel{
- .demo-circle{
- height: 250px;
- }
- }
- .login, .lock-screen, .loading{
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- height: 100%;
- width: 100%;
- }
- .loading{
- background: #fff;
- }
- .vm-author{
- line-height: 45px;
- font-size: 14px;
- a{
- color: #2d8cf0;
- }
- }
- .dashboard, .widget, .charts, .panels{
- &>.ivu-row{
- &>.ivu-col{
- margin-top: 15px;
- }
- }
- }
|