common.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. margin: 0;
  6. }
  7. #app{
  8. background: url('../images/page-bg.png') center center no-repeat;
  9. background-size: 100% 100%;
  10. height: 100vh;
  11. }
  12. #header {
  13. height: 70px;
  14. line-height: 70px;
  15. background: url('../images/header-bg.png') center center no-repeat;
  16. background-size: 100% 100%;
  17. text-align: center;
  18. font-weight: bold;
  19. font-size: 32px;
  20. color: #1CCBFF;
  21. position: relative;
  22. }
  23. .header-time{
  24. position: absolute;
  25. right: 70px;
  26. font-size: 18px;
  27. }
  28. .main{
  29. height: calc(100vh - 70px);
  30. padding: 15px;
  31. }
  32. .panel-title{
  33. position: relative;
  34. text-align: center;
  35. height: 50px;
  36. line-height: 50px;
  37. }
  38. .panel-title-text{
  39. font-size: 20px;
  40. font-weight: 600;
  41. color: #1CCBFF;
  42. position: relative;
  43. display: inline;
  44. }
  45. .panel-title-text::before{
  46. content: "";
  47. position: absolute;
  48. top: 10px;
  49. left: -40px;
  50. width: 30px;
  51. height: 10px;
  52. background: url(../images/title-left.png) no-repeat;
  53. }
  54. .panel-title-text::after{
  55. content: "";
  56. position: absolute;
  57. top: 10px;
  58. right: -40px;
  59. width: 30px;
  60. height: 10px;
  61. background: url(../images/title-right.png) no-repeat;
  62. }
  63. .panel-content{
  64. width: 100%;
  65. height: calc(100% - 50px);
  66. }