common.css 842 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. body{
  2. margin: 0;
  3. }
  4. .grey-bg{
  5. background-color: rgb(250, 250, 250);
  6. }
  7. #app {
  8. font: 14px/1.5 "Microsoft Yahei", 微软雅黑, Tahoma, Arial, Helvetica, STHeiti;
  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 ul li{
  40. list-style-type:disc;
  41. }
  42. .markdown-body ol li{
  43. list-style-type:decimal;
  44. }
  45. .text-center{
  46. text-align: center;
  47. }
  48. .text-left{
  49. text-align: left;
  50. }
  51. .block{
  52. display: block;
  53. }