| @@ -1,0 +1,92 @@ | ||
| 1 | +.templately-workspace { | |
| 2 | + width: 100%; | |
| 3 | + height: 100%; | |
| 4 | + display: -ms-flexbox; | |
| 5 | + display: flex; } | |
| 6 | + .templately-workspace > div.templately-workspace-content { | |
| 7 | + -ms-flex: 1 1; | |
| 8 | + flex: 1 1; | |
| 9 | + margin-left: 30px; | |
| 10 | + padding: 20px; } | |
| 11 | + .templately-workspace > div.templately-workspace-content .templately-workspace-header h1 { | |
| 12 | + font-weight: 500; | |
| 13 | + font-size: 24px; | |
| 14 | + color: #031d3c; } | |
| 15 | + | |
| 16 | +.templately-workspace-sidebar { | |
| 17 | + width: 270px; | |
| 18 | + padding: 20px; | |
| 19 | + -webkit-box-sizing: border-box; | |
| 20 | + box-sizing: border-box; | |
| 21 | + background-color: #fff; | |
| 22 | + height: 100%; | |
| 23 | + display: -ms-flexbox; | |
| 24 | + display: flex; | |
| 25 | + -ms-flex-direction: column; | |
| 26 | + flex-direction: column; } | |
| 27 | + .templately-workspace-sidebar .tws-menu-list, .templately-workspace-sidebar .tws-size { | |
| 28 | + width: 100%; } | |
| 29 | + .templately-workspace-sidebar .tws-menu-list { | |
| 30 | + -ms-flex: 1 1; | |
| 31 | + flex: 1 1; | |
| 32 | + overflow-y: auto; } | |
| 33 | + .templately-workspace-sidebar .tws-menu-list li > a { | |
| 34 | + text-decoration: none; | |
| 35 | + font-size: 16px; | |
| 36 | + color: #979fa8; | |
| 37 | + display: -ms-flexbox; | |
| 38 | + display: flex; | |
| 39 | + -ms-flex-align: center; | |
| 40 | + align-items: center; | |
| 41 | + padding: 10px; | |
| 42 | + margin-bottom: 10px; | |
| 43 | + cursor: pointer; } | |
| 44 | + .templately-workspace-sidebar .tws-menu-list li > a > svg { | |
| 45 | + fill: #979fa8; | |
| 46 | + margin-right: 10px; } | |
| 47 | + .templately-workspace-sidebar .tws-menu-list li > a.active { | |
| 48 | + color: #031d3c; } | |
| 49 | + .templately-workspace-sidebar .tws-menu-list li > a.active > svg { | |
| 50 | + fill: #6072ff; } | |
| 51 | + .templately-workspace-sidebar .tws-menu-list li > a:focus, .templately-workspace-sidebar .tws-menu-list li > a:visited { | |
| 52 | + outline: none; | |
| 53 | + -webkit-box-shadow: none; | |
| 54 | + box-shadow: none; } | |
| 55 | + .templately-workspace-sidebar .tws-size { | |
| 56 | + font-weight: 500; | |
| 57 | + display: -ms-flexbox; | |
| 58 | + display: flex; | |
| 59 | + -ms-flex-item-align: end; | |
| 60 | + align-self: flex-end; } | |
| 61 | + .templately-workspace-sidebar .tws-size > svg { | |
| 62 | + fill: #6072ff; } | |
| 63 | + .templately-workspace-sidebar .tws-size > div { | |
| 64 | + margin-left: 10px; | |
| 65 | + -ms-flex: 1 1; | |
| 66 | + flex: 1 1; } | |
| 67 | + .templately-workspace-sidebar .tws-size > div > div { | |
| 68 | + width: 100%; | |
| 69 | + height: 6px; | |
| 70 | + background-color: #e5eaf0; | |
| 71 | + position: relative; | |
| 72 | + border-radius: 3px; | |
| 73 | + overflow: hidden; } | |
| 74 | + .templately-workspace-sidebar .tws-size > div > div > span { | |
| 75 | + position: absolute; | |
| 76 | + left: 0px; | |
| 77 | + top: 0px; | |
| 78 | + width: 50%; | |
| 79 | + height: 100%; | |
| 80 | + background-color: #6072ff; | |
| 81 | + display: block; } | |
| 82 | + .templately-workspace-sidebar .tws-size > div p { | |
| 83 | + margin: 0; | |
| 84 | + font-size: 16px; | |
| 85 | + color: #031d3c; | |
| 86 | + margin-bottom: 6px; } | |
| 87 | + .templately-workspace-sidebar .tws-size > div > p:last-of-type { | |
| 88 | + font-size: 12px; | |
| 89 | + color: #979fa8; | |
| 90 | + margin-bottom: 0px; | |
| 91 | + margin-top: 5px; } | |
| 92 | + | |