12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .user-layout {
- margin-top: 30px !important;
- position: relative;
- .block-layout {
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06);
- border-radius: 12px;
- position: relative;
- margin-bottom: 10px;
- }
- .left-layout {
- width: 150px;
- position: absolute;
- left: 0;
- top: 0;
- .block-layout {
- padding: 24px 0;
- padding-right: 8px;
- }
- .item {
- display: block;
- height: 32px;
- line-height: 32px;
- color: #686872;
- text-align: center;
- margin: 4px 0;
- }
- .item:hover {
- color: #4299FF;
- }
- .item.active {
- color: #fff;
- background: #4299FF;
- border-top-right-radius: 16px;
- border-bottom-right-radius: 16px;
- }
- }
- .center-layout {
- padding-left: 160px;
- }
- .right-layout {
- width: 230px;
- display: none;
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- .user-layout.right {
- .center-layout {
- padding-right: 240px;
- }
- .right-layout {
- display: block;
- }
- }
|