visualizedCharts.css 1.9 KB

12345678910111213141516171819202122232425262728
  1. .contains{background:#000a2d;height:100%;width:100%;padding:0;margin:0;}
  2. .header{height:80px;background-size: cover;background:#09143c url('../images/headerbg.png');background-repeat:repeat-y;background-position:center;}
  3. .header .title{display:flex;justify-content:center;color:#fff;font-weight:bold;font-size:0.6rem;align-items: center;height: 100%;}
  4. .title{display:flex;justify-content:center;color:#fff;font-weight:bold;font-size:0.5rem;align-items: center;}
  5. .time{margin-right: 10px;font-size: 0.3rem;margin-top: -0.8rem;color: #fff;float: right;}
  6. .time .label{font-weight:300}
  7. .container{height:calc(100vh - 80px);width:100%;}
  8. .item_left,.item_center,.item_right{height:100%; padding-right: 10px;padding-left: 10px;display: flex;}
  9. .item_left_content,.item_center_content,.item_right_content{display: flex;flex-direction: column;align-content: stretch;justify-content: stretch;width: 100%;}
  10. .industryChartDiv,.changeChartDiv,.ageChartDiv,.powerChartDiv,.playChatDiv,.areaChartDiv{flex:1;margin: 10px 0px;}
  11. .totalInfoDiv{margin: 10px 0px;background: #0a1446;padding: 10px;}
  12. .moveMapDiv1{position: absolute;font-size: 56.6px;width: 8.03rem; z-index: 2;animation: myfirst2 15s infinite linear;overflow:hidden;}
  13. .moveMapDiv{flex:4;margin: 10px 0px;display: flex;justify-content: center;justify-content: center;align-items: center;}
  14. .industryChartDiv,.powerChartDiv,.changeChartDiv,.ageChartDiv,.playChatDiv,.areaChartDiv{background:#08113e url('../images/partbg1.png');background-repeat: repeat;
  15. background-position: center;}
  16. .border{border: 2px solid #02a6b5;width: 100%;height: 100%;position: relative;margin: auto;}
  17. #industryBar,#changeLine,#agePie,#skillAcquisitionBar,#playCounts,#roseChart,#moveMapChart{height:100%;width:100%;}
  18. @keyframes myfirst2
  19. {
  20. from {transform: rotate(0deg);}
  21. to {transform: rotate(359deg);}
  22. }
  23. @keyframes myfirst
  24. {
  25. from {transform: rotate(0deg);}
  26. to {transform: rotate(-359deg);}
  27. }