border.scss 699 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .demo-border .text {
  2. width: 15%;
  3. }
  4. .demo-border .line {
  5. width: 70%;
  6. }
  7. .demo-border .line div {
  8. width: 100%;
  9. height: 0;
  10. border-top: 1px solid #eee;
  11. }
  12. .demo-border .line .dashed {
  13. border-top: 2px dashed #eee;
  14. }
  15. .demo-shadow {
  16. height: 100px;
  17. width: 50%;
  18. border: 1px solid #eee;
  19. }
  20. .demo-shadow-text {
  21. line-height: 50px;
  22. color: #666;
  23. font-size: 14px;
  24. }
  25. .demo-radius .title {
  26. color: #666;
  27. font-size: 18px;
  28. margin: 10px 0;
  29. }
  30. .demo-radius .value {
  31. color: #333;
  32. font-size: 16px;
  33. margin: 10px 0;
  34. }
  35. .demo-radius .radius {
  36. height: 60px;
  37. width: 70%;
  38. border: 1px solid #d7dae2;
  39. border-radius: 0;
  40. margin-top: 20px;
  41. }
  42. .demo-radius .radius-30 {
  43. border-radius: 30px;
  44. }