styles.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. @font-face {
  2. font-family: 'Source Sans Pro';
  3. font-style: normal;
  4. font-weight: 300;
  5. src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('./fonts/sourcesanspro/sourcesanspro-light.woff') format('woff');
  6. }
  7. @font-face {
  8. font-family: 'Source Sans Pro';
  9. font-style: normal;
  10. font-weight: 400;
  11. src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('./fonts/sourcesanspro/sourcesanspro.woff') format('woff');
  12. }
  13. @font-face {
  14. font-family: 'Source Sans Pro';
  15. font-style: normal;
  16. font-weight: 700;
  17. src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('./fonts/sourcesanspro/sourcesanspro-bold.woff') format('woff');
  18. }
  19. body, html{
  20. padding: 0px;
  21. margin: 0px;
  22. height: 100%;
  23. width: 100%
  24. }
  25. body{
  26. font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  27. font-size: 12px;
  28. -webkit-font-smoothing: antialiased;
  29. line-height: 1.42857143;
  30. color: #58666e;
  31. }
  32. .navbar{
  33. border-radius: 0px!important;
  34. border-bottom: 1px solid black;
  35. margin-bottom: 0px!important;
  36. }
  37. .navbar-blue{
  38. background-color: #151E23;
  39. }
  40. .navbar-brand{
  41. padding-top: 14px;
  42. width: 225px
  43. }
  44. .main-content{
  45. margin-top: 100px;
  46. margin-left: 200px;
  47. }
  48. /* Side Navigation */
  49. @media(min-width:768px) {
  50. .side-nav {
  51. border: none;
  52. border-radius: 0;
  53. overflow-y: auto;
  54. background-color: #4A5356;
  55. bottom: 0;
  56. overflow-x: hidden;
  57. padding-bottom: 40px;
  58. color: white;
  59. height: 100%;
  60. }
  61. .side-nav>li{
  62. width: 100%;
  63. }
  64. .side-nav>li>a {
  65. width: 100%;
  66. color: #9D9D9D;
  67. }
  68. .side-nav li a:hover,
  69. .side-nav li a:focus {
  70. outline: none;
  71. background-color: #656F72 !important;
  72. color: white;
  73. }
  74. }
  75. .sidebar{
  76. position: fixed;
  77. width: 220px;
  78. z-index: 100;
  79. height: 100%;
  80. margin-top: 50px;
  81. }
  82. .side-nav>li>ul {
  83. padding: 0;
  84. }
  85. .side-nav>li>ul>li>a {
  86. display: block;
  87. padding: 10px 15px 10px 38px;
  88. text-decoration: none;
  89. color: white;
  90. }
  91. .side-nav>li>ul>li>a:hover {
  92. color: #fff;
  93. }
  94. .content-col{
  95. padding-left: 14%;
  96. }
  97. .player-skin{
  98. background-color: #F8F8F8;
  99. border-color: #E7E7E7;
  100. }
  101. .player-position{
  102. background-color: #BEC3CC;
  103. position: fixed;
  104. margin-top: 50px;
  105. margin-left: 190px;
  106. width: 100%;
  107. }
  108. .player-wrapper{
  109. padding: 15px;
  110. width: 85%;
  111. }
  112. .player-control{
  113. cursor: pointer;
  114. font-size: 15px;
  115. }
  116. .player-control :hover{
  117. cursor: pointer;
  118. color: #35BDEB;
  119. font-size: 15px;
  120. }