123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- .page {
- position: relative;
- display: flex;
- flex-direction: column;
- }
- .main {
- flex: 1;
- /*background-color: #B5CBD8;*/
- background-color: #F4F5F7;
- }
- .sidebar {
- /*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, rgba(181, 203, 215, 1) 70%);*/
- /*background-color: rgba(181, 203, 215, 1);*/
- /*background-image: linear-gradient(180deg, rgb(59, 72, 78) 0%, rgb(31, 38, 33) 100%);*/
- background-color: #3B484E;
- }
- .dot-green {
- border-radius: 5px;
- background-color: #00ff90;
- margin: 10px;
- width: 10px;
- height: 10px;
- }
- .dot-red {
- border-radius: 5px;
- background-color: #ff0000;
- margin: 10px;
- width: 10px;
- height: 10px;
- }
- .top-row {
- /*background-color: #f7f7f7;*/
- /*background-color: rgba(181, 203, 215, 1);*/
- background-color: #F4F5F7;
- border-bottom: 5px solid #3B484E;
- justify-content: flex-end;
- height: 5.5rem;
- display: flex;
- align-items: center;
- }
- .top-row ::deep a, .top-row .btn-link {
- white-space: nowrap;
- margin-left: 1.5rem;
- }
- .top-row a:first-child {
- overflow: hidden;
- text-overflow: ellipsis;
- }
- @media (max-width: 640.98px) {
- .top-row:not(.auth) {
- display: none;
- }
- .top-row.auth {
- justify-content: space-between;
- }
- .top-row a, .top-row .btn-link {
- margin-left: 0;
- }
- }
- @media (min-width: 641px) {
- .page {
- flex-direction: row;
- }
- .sidebar {
- width: 250px;
- height: 100vh;
- position: sticky;
- top: 0;
- }
- .top-row {
- position: sticky;
- top: 0;
- z-index: 1;
- }
- .main > div {
- padding-left: 2rem !important;
- padding-right: 1.5rem !important;
- }
- }
|