stylesheet.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .dropAreaLabel {
  2. font-size: 24px;
  3. font-weight: bold;
  4. }
  5. .framedArea {
  6. background-color: rgba(255,255,255,0.0);
  7. border-color: rgba(255,255,255,1.0);
  8. border-width: 1px;
  9. color: rgba(255, 255, 255, 1.0);
  10. }
  11. .shadowedAreaTop {
  12. background-gradient-start: rgba(0, 0, 0, 0.7);
  13. background-gradient-end: rgba(0, 0, 0, 0.1);
  14. background-gradient-direction: vertical;
  15. color: rgba(255, 255, 255, 1.0);
  16. }
  17. .shadowedAreaBottom {
  18. background-gradient-start: rgba(0, 0, 0, 0.1);
  19. background-gradient-end: rgba(0, 0, 0, 0.7);
  20. background-gradient-direction: vertical;
  21. color: rgba(255, 255, 255, 1.0);
  22. }
  23. .folderArea {
  24. background-gradient-start: rgba(0, 0, 0, 0.4);
  25. background-gradient-end: rgba(0, 0, 0, 0.0);
  26. background-gradient-direction: vertical;
  27. border-color: rgba(255,255,255,1.0);
  28. border-radius: 4px;
  29. border-width: 2px;
  30. color: rgba(255, 255, 255, 1.0);
  31. }
  32. .insensitiveArea {
  33. background-color: rgba(0, 0, 0, 0.1);
  34. color: rgba(100, 100, 100, 0.6);
  35. }
  36. .appCategoryBox {
  37. background-color: rgba(100, 100, 100, 0.3);
  38. border-radius: 3px;
  39. margin: 3px;
  40. padding: 2px;
  41. padding-left: 6px;
  42. }
  43. .appCategoryDeleteBtn {
  44. background-color: rgba(100, 100, 100, 0.3);
  45. border-radius: 3px;
  46. }