demo.css 535 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * PS钢笔工具
  3. **/
  4. html, body {
  5. width: 100%;
  6. height: 100%;
  7. margin: 0;
  8. padding: 0;
  9. background: #eee;
  10. }
  11. .box {
  12. width: 960px;
  13. height: 450px;
  14. position: absolute;
  15. top: 100px;
  16. left: 50%;
  17. margin-left: -450px;
  18. border: 1px solid #c2c2c2;
  19. }
  20. .sidebar {
  21. width: 60px;
  22. height: 100%;
  23. float: left;
  24. background: #2d2d2d;
  25. }
  26. .canvas-area {
  27. width: 900px;
  28. height: 100%;
  29. margin-left: 60px;
  30. }
  31. .kity-container {
  32. width: 900px;
  33. height: 450px;
  34. background: #fff;
  35. }