Angular LMS app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 

23 行
458 B

  1. /* You can add global styles to this file, and also import other style files */
  2. * {
  3. font-family: 'Roboto', sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. letter-spacing: 0.5px;
  8. outline: none;
  9. line-height: 1.4;
  10. }
  11. :root {
  12. --black: #1a1a1a;
  13. --ash-black: #282828;
  14. --dark-grey: #4d4d4d;
  15. --light-grey: #999999;
  16. --teal: #06c4a8;
  17. --green: #8cc63f;
  18. --teal-green: #08c17e;
  19. --danger: #ea8b8b;
  20. }