main.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. /*! Main CSS file */
  2. body {
  3. background-repeat:no-repeat;
  4. background-size:cover;
  5. background-position: center center;
  6. background:url(../img/daveo-background.svg) transparent;
  7. background:url(../img/daveo-background.svg),radial-gradient(yellow,#f06d06);
  8. /*
  9. background: -webkit-gradient(radial, center center, 0, center center, 460, from(transparent), to(#333));
  10. background: -webkit-radial-gradient(circle, transparent, #333);
  11. background: -moz-radial-gradient(circle, transparent, #333);
  12. background: -ms-radial-gradient(circle, transparent, #333);
  13. */
  14. }
  15. header {
  16. width:100%;
  17. min-height:150px;
  18. background:url(../img/daveo-header.svg) transparent;
  19. background-repeat:no-repeat;
  20. background-size:cover;
  21. background-position:center;
  22. padding: 50px 0 0;
  23. margin: 0;
  24. }
  25. .outer-container {
  26. width:100%;
  27. background-repeat:no-repeat;
  28. background-size:cover;
  29. background-position:center;
  30. }
  31. .panel-default {
  32. box-shadow: 5px 5px 8px #555, inset 0px 2px 3px #fff;
  33. background: rgba (145,145,145,.5);
  34. }
  35. /***********************************
  36. ========== Audio Player ============
  37. ***********************************/
  38. #audio_player {
  39. background-color: #f7f7f7;
  40. }
  41. div#player{
  42. width: 100%;
  43. color: #555555;
  44. font-family: 'PT Sans', sans-serif;
  45. font-weight: 700;
  46. font-size: 12px;
  47. }
  48. #song-information{
  49. text-align: left;
  50. margin: 0 0 10px;
  51. }
  52. #controls{
  53. right: left;
  54. }
  55. #amplitude-volume-slider{
  56. width: 80%;
  57. margin: 0 auto;
  58. padding-right:35px;
  59. }
  60. .current-track {
  61. margin:20px 0 0;
  62. }
  63. input[type=range] {
  64. -webkit-appearance: none;
  65. margin: 18px 0;
  66. width: 100%;
  67. }
  68. input[type=range]:focus {
  69. outline: none;
  70. }
  71. input[type=range]::-webkit-slider-runnable-track {
  72. width: 100%;
  73. height: 8.4px;
  74. cursor: pointer;
  75. animate: 0.2s;
  76. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  77. background: #337ab7;
  78. border-radius: 1.3px;
  79. border: 0.2px solid #010101;
  80. }
  81. input[type=range]::-webkit-slider-thumb {
  82. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  83. border: 1px solid #333;
  84. height: 26px;
  85. width: 16px;
  86. border-radius: 3px;
  87. background: #f7f7f7;
  88. cursor: pointer;
  89. -webkit-appearance: none;
  90. margin-top: -8px;
  91. }
  92. input[type=range]:focus::-webkit-slider-runnable-track {
  93. background: #367ebd;
  94. }
  95. input[type=range]::-moz-range-track {
  96. width: 100%;
  97. height: 8.4px;
  98. cursor: pointer;
  99. animate: 0.2s;
  100. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  101. background: #337ab7;
  102. border-radius: 1.3px;
  103. border: 0.2px solid #010101;
  104. }
  105. input[type=range]::-moz-range-thumb {
  106. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  107. border: 1px solid #000000;
  108. height: 36px;
  109. width: 16px;
  110. border-radius: 3px;
  111. background: #ffffff;
  112. cursor: pointer;
  113. }
  114. input[type=range]::-ms-track {
  115. width: 100%;
  116. height: 8.4px;
  117. cursor: pointer;
  118. animate: 0.2s;
  119. background: transparent;
  120. border-color: transparent;
  121. border-width: 16px 0;
  122. color: transparent;
  123. }
  124. input[type=range]::-ms-fill-lower {
  125. background: #2a6495;
  126. border: 0.2px solid #010101;
  127. border-radius: 2.6px;
  128. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  129. }
  130. input[type=range]::-ms-fill-upper {
  131. background: #337ab7;
  132. border: 0.2px solid #010101;
  133. border-radius: 2.6px;
  134. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  135. }
  136. input[type=range]::-ms-thumb {
  137. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  138. border: 1px solid #000000;
  139. height: 36px;
  140. width: 16px;
  141. border-radius: 3px;
  142. background: #ffffff;
  143. cursor: pointer;
  144. }
  145. input[type=range]:focus::-ms-fill-lower {
  146. background: #3071a9;
  147. }
  148. input[type=range]:focus::-ms-fill-upper {
  149. background: #367ebd;
  150. }
  151. output.volume {
  152. position: absolute;
  153. background-image: -moz-linear-gradient(top, #444444, #999999);
  154. background-image: -o-linear-gradient(top, #444444, #999999);
  155. background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
  156. background-image: -webkit-linear-gradient(top, #444444, #999999);
  157. width: 40px;
  158. height: 30px;
  159. text-align: center;
  160. color: white;
  161. border-radius: 10px;
  162. display: inline-block;
  163. font: bold 15px/30px Georgia;
  164. bottom: 175%;
  165. left: 0;
  166. margin-left: -1%;
  167. }
  168. output.volume:after {
  169. content: "";
  170. position: absolute;
  171. width: 0;
  172. height: 0;
  173. border-top: 10px solid #999999;
  174. border-left: 5px solid transparent;
  175. border-right: 5px solid transparent;
  176. top: 100%;
  177. left: 50%;
  178. margin-left: -5px;
  179. margin-top: -1px;
  180. }
  181. meter {
  182. -webkit-transform: rotate(-90deg);
  183. -moz-transform: rotate(-90deg);
  184. -o-transform: rotate(-90deg);
  185. transform: rotate(-90deg);
  186. }
  187. #amplitude-current-time{
  188. font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
  189. font-size: 15px;
  190. font-weight: 400;
  191. float:left;
  192. }
  193. #amplitude-play-pause {
  194. height: 50px;
  195. width: 50px;
  196. line-height: 50px;
  197. border-radius: 50%;
  198. text-align: center;
  199. margin: -50px 0 0 0;
  200. cursor: pointer;
  201. float: right;
  202. position: relative;
  203. -webkit-transition: all .1s linear;
  204. transition: all .1s linear;
  205. }
  206. .amplitude-paused {
  207. color:rgba(88, 185, 87, .7);
  208. display: block;
  209. background-color: #f7f7f7;
  210. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  211. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  212. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  213. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  214. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  215. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  216. }
  217. @-webkit-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  218. @-moz-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  219. @-ms-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  220. @keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  221. .amplitude-paused:hover {
  222. color:#58B957;
  223. text-shadow: 0px 0px 6px #58B957;
  224. box-shadow: 0 0 0 0 rgba(88, 185, 87, .7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  225. -webkit-animation: pulseon 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  226. }
  227. .amplitude-paused:after {
  228. content:"\e072";
  229. font-family:"Glyphicons Halflings";
  230. font-size:25px;
  231. line-height: 50px;
  232. padding-left:4px;
  233. text-shadow: 1px 4px 6px #def, 0 0 0 #555;
  234. }
  235. .amplitude-paused:before {
  236. }
  237. .amplitude-playing {
  238. color:#DB524B;
  239. text-shadow:0px 0px 3px #DB524B;
  240. background-color: #f7f7f7;
  241. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  242. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  243. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  244. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  245. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  246. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  247. }
  248. @-webkit-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  249. @-moz-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  250. @-ms-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  251. @keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  252. .amplitude-playing:hover {
  253. color:#DB524B;
  254. text-shadow:0px 0px 6px #DB524B;
  255. box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  256. -webkit-animation: pulseoff 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  257. }
  258. .amplitude-playing:after {
  259. content:"\e073";
  260. font-family:"Glyphicons Halflings";
  261. font-size:25px;
  262. line-height: 50px;
  263. padding-left:4px;
  264. }
  265. .amplitude-playing:before {
  266. }
  267. #amplitude-now-playing-name{
  268. }
  269. #amplitude-now-playing-listeners{
  270. }
  271. #amplitude-now-playing-bitrate{
  272. }
  273. #archives audio {
  274. width: 100px;
  275. background: #fff;
  276. }
  277. #archives audio::-webkit-media-controls-timeline-container,
  278. #archives audio::-webkit-media-controls-timeline,
  279. #archives audio::-webkit-media-controls-mute-button,
  280. #archives audio::-webkit-media-controls-current-time-display
  281. #archives audio::-webkit-media-controls-time-remaining-display {
  282. display:none !important;
  283. }
  284. .archive-audio {
  285. height:50px;
  286. text-align: center;
  287. display: table-cell;
  288. vertical-align: middle !important;
  289. }
  290. @-webkit-keyframes progress-bar-stripes {
  291. from {
  292. background-position: 40px 0;
  293. }
  294. to {
  295. background-position: 0 0;
  296. }
  297. }
  298. @keyframes progress-bar-stripes {
  299. from {
  300. background-position: 40px 0;
  301. }
  302. to {
  303. background-position: 0 0;
  304. }
  305. }
  306. .progress {
  307. overflow: hidden;
  308. height: 20px;
  309. margin-bottom: 20px;
  310. background-color: #f5f5f5;
  311. border-radius: 4px;
  312. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  313. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  314. }
  315. .progress-bar {
  316. float: left;
  317. width: 0%;
  318. height: 100%;
  319. font-size: 12px;
  320. line-height: 20px;
  321. color: #ffffff;
  322. text-align: center;
  323. background-color: #337ab7;
  324. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  325. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  326. -webkit-transition: width 0.6s ease;
  327. -o-transition: width 0.6s ease;
  328. transition: width 0.6s ease;
  329. }
  330. .progress-striped .progress-bar,
  331. .progress-bar-striped {
  332. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  333. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  334. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  335. background-size: 40px 40px;
  336. }
  337. .progress.active .progress-bar,
  338. .progress-bar.active {
  339. -webkit-animation: progress-bar-stripes 2s linear infinite;
  340. -o-animation: progress-bar-stripes 2s linear infinite;
  341. animation: progress-bar-stripes 2s linear infinite;
  342. }
  343. .progress-bar-success {
  344. background-color: #5cb85c;
  345. }
  346. .progress-striped .progress-bar-success {
  347. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  348. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  349. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  350. }
  351. .progress-bar-info {
  352. background-color: #5bc0de;
  353. }
  354. .progress-striped .progress-bar-info {
  355. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  356. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  357. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  358. }
  359. .progress-bar-warning {
  360. background-color: #f0ad4e;
  361. }
  362. .progress-striped .progress-bar-warning {
  363. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  364. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  365. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  366. }
  367. .progress-bar-danger {
  368. background-color: #d9534f;
  369. }
  370. .progress-striped .progress-bar-danger {
  371. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  372. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  373. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  374. }
  375. .progress {
  376. position: relative;
  377. }
  378. .progress .progress-bar {
  379. position: absolute;
  380. overflow: hidden;
  381. line-height: 20px;
  382. }
  383. .progress .progressbar-back-text {
  384. position: absolute;
  385. width: 100%;
  386. height: 100%;
  387. font-size: 12px;
  388. line-height: 20px;
  389. text-align: center;
  390. }
  391. .progress .progressbar-front-text {
  392. display: block;
  393. width: 100%;
  394. font-size: 12px;
  395. line-height: 20px;
  396. text-align: center;
  397. }
  398. .progress.right .progress-bar {
  399. right: 0;
  400. }
  401. .progress.right .progressbar-front-text {
  402. position: absolute;
  403. right: 0;
  404. }
  405. .progress.vertical {
  406. width: 20px;
  407. height: 100%;
  408. float: left;
  409. margin-right: 20px;
  410. }
  411. .progress.vertical.bottom {
  412. position: relative;
  413. }
  414. .progress.vertical.bottom .progressbar-front-text {
  415. position: absolute;
  416. bottom: 0;
  417. }
  418. .progress.vertical .progress-bar {
  419. width: 100%;
  420. height: 0;
  421. -webkit-transition: height 0.6s ease;
  422. -o-transition: height 0.6s ease;
  423. transition: height 0.6s ease;
  424. }
  425. .progress.vertical.bottom .progress-bar {
  426. position: absolute;
  427. bottom: 0;
  428. }
  429. /***********************************
  430. =========== Chat Rooms =============
  431. ***********************************/
  432. #room_users {
  433. margin-top: 10px;
  434. border-top: 1px solid #cecece;
  435. padding-top: 10px;
  436. }
  437. li#Lobby_tab {
  438. }
  439. .hidden-tab {
  440. display:none;
  441. }
  442. video {
  443. background:#000;
  444. width: 100%;
  445. margin: 0 0 5px 0;
  446. vertical-align: top;
  447. height: calc(50% - 12px);
  448. }
  449. /***********************************
  450. ======= Playlist/Calendar ==========
  451. ***********************************/
  452. .tabs-below > .nav-tabs {
  453. border-bottom: 0;
  454. }
  455. .tabs-below > .nav-tabs {
  456. border-top: 1px solid #ddd;
  457. }
  458. .tabs-below > .nav-tabs > li {
  459. margin-top: -1px;
  460. margin-bottom: 0;
  461. }
  462. .tabs-below > .nav-tabs > li > a {
  463. -webkit-border-radius: 0 0 4px 4px;
  464. -moz-border-radius: 0 0 4px 4px;
  465. border-radius: 0 0 4px 4px;
  466. }
  467. .tabs-below > .nav-tabs > li > a:hover,
  468. .tabs-below > .nav-tabs > li > a:focus {
  469. border-top-color: #ddd;
  470. border-bottom-color: transparent;
  471. }
  472. .tabs-below > .nav-tabs > .active > a,
  473. .tabs-below > .nav-tabs > .active > a:hover,
  474. .tabs-below > .nav-tabs > .active > a:focus {
  475. border-color: transparent #ddd #ddd #ddd;
  476. }
  477. .scrollable-list {
  478. overflow: scroll;
  479. height: 198px;
  480. }
  481. ::-webkit-scrollbar {
  482. -webkit-appearance: none;
  483. width: 7px;
  484. }
  485. ::-webkit-scrollbar-thumb {
  486. border-radius: 4px;
  487. background-color: rgba(0, 0, 0, .5);
  488. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  489. }
  490. .scrollable-list .list-group-item {
  491. padding: 3px 10px;
  492. font-size:12px;
  493. }
  494. .scrollable-list-footer {
  495. background:#fff;
  496. }
  497. ul .badge {
  498. font-weight:normal;
  499. }
  500. .scrollable-list .list-group {
  501. margin: 0;
  502. }
  503. /***********************************
  504. =========== Chat Rooms =============
  505. ***********************************/
  506. /* ========= Vertical Align Modals ============ */
  507. .vertical-alignment-helper {
  508. display:table;
  509. height: 100%;
  510. width: 100%;
  511. pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  512. }
  513. .vertical-align-center {
  514. /* To center vertically */
  515. display: table-cell;
  516. vertical-align: middle;
  517. pointer-events:none;
  518. }
  519. .modal-content {
  520. /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  521. width:inherit;
  522. height:inherit;
  523. /* To center horizontally */
  524. margin: 0 auto;
  525. pointer-events: all;
  526. }
  527. /* ========= Footer/Bottom Nav ============ */
  528. .panel-bottom {
  529. background: rgba(0,0,0,.5);
  530. border:none;
  531. }
  532. .panel-bottom .navbar-brand {
  533. color:#fff;
  534. }
  535. .panel-bottom .navbar-nav > li > a {
  536. color:#fff;
  537. }
  538. .panel-bottom .navbar-nav > li > a:hover {
  539. color:#58B957;
  540. background:none;
  541. }
  542. .panel-bottom .navbar-nav > li > a:focus,
  543. .panel-bottom .navbar-nav > li > a:active {
  544. border:none;
  545. text-decoration:none;
  546. outline:none;
  547. color:#fff;
  548. background:none;
  549. }
  550. .panel-bottom .navbar-nav > li > a:visited {
  551. border:none;
  552. }
  553. .listeners {
  554. width:410px;
  555. height:410px;
  556. }
  557. .chart {
  558. width:410px;
  559. height:410px;
  560. }
  561. footer {
  562. width:100%;
  563. min-height:100px;
  564. background:url(../img/daveo-footer.svg) transparent;
  565. background-repeat:no-repeat;
  566. background-size:cover;
  567. background-position:center;
  568. padding: 50px 0 0;
  569. margin: 0 0 20px;
  570. }