Warning, /webapps/ocs-server/plasmastore/css/dashboard.css is written in an unsupported language. File is not indexed.

0001 /*
0002  * Base structure
0003  */
0004 
0005 /* Move down content because we have a fixed navbar that is 50px tall */
0006 body {
0007   padding-top: 50px;
0008 }
0009 
0010 
0011 /*
0012  * Global add-ons
0013  */
0014 
0015 .sub-header {
0016   padding-bottom: 10px;
0017   border-bottom: 1px solid #eee;
0018 }
0019 
0020 /*
0021  * Top navigation
0022  * Hide default border to remove 1px line.
0023  */
0024 .navbar-fixed-top {
0025   border: 0;
0026 }
0027 
0028 /*
0029  * Sidebar
0030  */
0031 
0032 /* Hide for mobile, show later */
0033 .sidebar {
0034   display: none;
0035 }
0036 @media (min-width: 768px) {
0037   .sidebar {
0038     position: fixed;
0039     top: 51px;
0040     bottom: 0;
0041     left: 0;
0042     z-index: 1000;
0043     display: block;
0044     padding: 20px;
0045     overflow-x: hidden;
0046     overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
0047     background-color: #f5f5f5;
0048     border-right: 1px solid #eee;
0049   }
0050 }
0051 
0052 /* Sidebar navigation */
0053 .nav-sidebar {
0054   margin-right: -21px; /* 20px padding + 1px border */
0055   margin-bottom: 20px;
0056   margin-left: -20px;
0057 }
0058 .nav-sidebar > li > a {
0059   padding-right: 20px;
0060   padding-left: 20px;
0061 }
0062 .nav-sidebar > .active > a,
0063 .nav-sidebar > .active > a:hover,
0064 .nav-sidebar > .active > a:focus {
0065   color: #fff;
0066   background-color: #428bca;
0067 }
0068 
0069 
0070 /*
0071  * Main content
0072  */
0073 
0074 .main {
0075   padding: 20px;
0076 }
0077 @media (min-width: 768px) {
0078   .main {
0079     padding-right: 40px;
0080     padding-left: 40px;
0081   }
0082 }
0083 .main .page-header {
0084   margin-top: 0;
0085 }
0086 
0087 
0088 /*
0089  * Placeholder dashboard ideas
0090  */
0091 
0092 .placeholders {
0093   margin-bottom: 30px;
0094   text-align: center;
0095 }
0096 .placeholders h4 {
0097   margin-bottom: 0;
0098 }
0099 .placeholder {
0100   margin-bottom: 20px;
0101 }
0102 .placeholder img {
0103   display: inline-block;
0104   border-radius: 50%;
0105 }