cr.menu.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * 作者:王成
  3. * 创建日期:2021年11月19日
  4. * 操作系统:MAC
  5. * 描述:网格菜单样式集合
  6. */
  7. /* 菜单容器 */
  8. .cr-menu-panel {
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. /* 菜单容器内图片样式 */
  15. .cr-menu-panel>img {
  16. width: 60px;
  17. height: 60px;
  18. margin: 5px;
  19. }
  20. /* 菜单内文字样式 */
  21. .cr-menu-panel>span {
  22. font-size: 14px;
  23. margin-bottom: 5px;
  24. }
  25. /* 菜单点击效果 */
  26. .mui-grid-view >li:active {
  27. background-color: rgba(255, 0, 0, 0.3) !important;
  28. border-radius: 5px;
  29. }
  30. h5 {
  31. font-size: 16px;
  32. margin-left: 16px;
  33. color: rgb(36, 66, 241);
  34. }
  35. /* 菜单小容器 */
  36. .cr-menu-smart-panel {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: center;
  40. align-items: center;
  41. }
  42. /* 菜单小容器内图片样式 */
  43. .cr-menu-smart-panel>img {
  44. width: 30px;
  45. height: 30px;
  46. margin: 5px;
  47. }
  48. /* 菜单小容器内文字样式 */
  49. .cr-menu-smart-panel>span {
  50. font-size: 14px;
  51. margin-bottom: 5px;
  52. }
  53. .cr-title{
  54. display: flex;
  55. flex-direction: row;
  56. align-items: center;
  57. padding:10px;
  58. }
  59. .cr-title >img{
  60. width: 24px;
  61. height: 24px;
  62. }
  63. .cr-title >span{
  64. font-size: 16px;
  65. margin-left: 10px;
  66. }