123456789101112131415161718192021222324252627282930313233343536 |
- .fixed-top{
- height: 48px !important;
- }
- .nav-top{
- line-height: inherit;
- }
- .nav-top .nav-item
- {
- float:left !important; /* 向左漂移,将竖排变为横排 */
- }
- .sidebar {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: 100;
- padding: 48px 0 0;
- box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
- }
- .nav-top{
- list-style: none;
- }
- .nav-top .nav-item
- {
- padding-left: 25px;
- list-style: none;
- }
- .main{
- padding-top: 48px;
- }
|