cr.menu.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. color: rgb(255, 255, 255);
  25. }
  26. /* 菜单点击效果 */
  27. .mui-grid-view>li:active {
  28. background-color: rgba(255, 0, 0, 0.3) !important;
  29. border-radius: 5px;
  30. }
  31. h5 {
  32. font-size: 16px;
  33. margin-left: 16px;
  34. color: rgb(114, 198, 254);
  35. }
  36. /* 菜单小容器 */
  37. .cr-menu-smart-panel {
  38. display: flex;
  39. flex-direction: column;
  40. justify-content: center;
  41. align-items: center;
  42. }
  43. /* 菜单小容器内图片样式 */
  44. .cr-menu-smart-panel>img {
  45. width: 30px;
  46. height: 30px;
  47. margin: 5px;
  48. }
  49. /* 菜单小容器内文字样式 */
  50. .cr-menu-smart-panel>span {
  51. font-size: 14px;
  52. margin-bottom: 5px;
  53. color: rgb(203, 203, 203);
  54. }