| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- @font-face {
- font-family: 'Source Sans Pro';
- font-style: normal;
- font-weight: 300;
- src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('./fonts/sourcesanspro/sourcesanspro-light.woff') format('woff');
- }
- @font-face {
- font-family: 'Source Sans Pro';
- font-style: normal;
- font-weight: 400;
- src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('./fonts/sourcesanspro/sourcesanspro.woff') format('woff');
- }
- @font-face {
- font-family: 'Source Sans Pro';
- font-style: normal;
- font-weight: 700;
- src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('./fonts/sourcesanspro/sourcesanspro-bold.woff') format('woff');
- }
- body, html{
- padding: 0px;
- margin: 0px;
- height: 100%;
- width: 100%
- }
- body{
- font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 12px;
- -webkit-font-smoothing: antialiased;
- line-height: 1.42857143;
- color: #58666e;
- }
- .navbar{
- border-radius: 0px!important;
- border-bottom: 1px solid black;
- margin-bottom: 0px!important;
- }
- .navbar-blue{
- background-color: #151E23;
- }
- .navbar-brand{
- padding-top: 14px;
- width: 225px
- }
- .main-content{
- margin-top: 100px;
- margin-left: 200px;
- }
- /* Side Navigation */
- @media(min-width:768px) {
- .side-nav {
- border: none;
- border-radius: 0;
- overflow-y: auto;
- background-color: #4A5356;
- bottom: 0;
- overflow-x: hidden;
- padding-bottom: 40px;
- color: white;
- height: 100%;
- }
- .side-nav>li{
- width: 100%;
- }
- .side-nav>li>a {
- width: 100%;
- color: #9D9D9D;
- }
- .side-nav li a:hover,
- .side-nav li a:focus {
- outline: none;
- background-color: #656F72 !important;
- color: white;
- }
- }
- .sidebar{
- position: fixed;
- width: 220px;
- z-index: 100;
- height: 100%;
- margin-top: 50px;
- }
- .side-nav>li>ul {
- padding: 0;
- }
- .side-nav>li>ul>li>a {
- display: block;
- padding: 10px 15px 10px 38px;
- text-decoration: none;
- color: white;
- }
- .side-nav>li>ul>li>a:hover {
- color: #fff;
- }
- .content-col{
- padding-left: 14%;
- }
- .player-skin{
- background-color: #F8F8F8;
- border-color: #E7E7E7;
- }
- .player-position{
- background-color: #BEC3CC;
- position: fixed;
- margin-top: 50px;
- margin-left: 190px;
- width: 100%;
- }
- .player-wrapper{
- padding: 15px;
- width: 85%;
- }
- .player-control{
- cursor: pointer;
- font-size: 15px;
- }
- .player-control :hover{
- cursor: pointer;
- color: #35BDEB;
- font-size: 15px;
- }
|