common.css 824 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. body{
  2. margin: 0;
  3. }
  4. .grey-bg{
  5. background-color: rgb(250, 250, 250);
  6. }
  7. #app {
  8. font: 14px/1.5 "PingFang SC","Helvetica Neue","Hiragino Sans GB","Segoe UI","Microsoft YaHei","微软雅黑",sans-serif;
  9. }
  10. a {
  11. color: #409eff;
  12. text-decoration: none;
  13. }
  14. .center-card{
  15. width: 300px;
  16. position : absolute;
  17. top : 50%;
  18. left : 50%;
  19. transform : translate(-50%,-50%);
  20. padding-top: 0px;
  21. padding-left: 15px;
  22. padding-right: 15px;
  23. padding-bottom: 0px;
  24. box-sizing: border-box;
  25. }
  26. .pull-right{
  27. float: right;
  28. }
  29. .pull-left{
  30. float: left;
  31. }
  32. .el-dropdown-link{
  33. cursor: pointer;
  34. color: #409eff;
  35. }
  36. li{
  37. list-style-type:none;
  38. }
  39. .markdown-body li{
  40. list-style-type:disc;
  41. }
  42. .text-center{
  43. text-align: center;
  44. }
  45. .text-left{
  46. text-align: left;
  47. }
  48. .block{
  49. display: block;
  50. }