common.css 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .text-center{
  40. text-align: center;
  41. }
  42. .text-left{
  43. text-align: left;
  44. }
  45. .block{
  46. display: block;
  47. }