boxes.css 616 B

12345678910111213141516171819202122232425262728293031
  1. .script-placeholder {
  2. padding:100px 0px;
  3. text-align:center;
  4. }
  5. /* Default state */
  6. .boxes-box-controls .cancel { display:none; }
  7. /* Editing state */
  8. .boxes-box-editing .boxes-box-controls .edit { display:none; }
  9. .boxes-box-editing .boxes-box-controls .cancel { display:block; }
  10. .boxes-box-editing .swirly {
  11. background-image: url(swirly.gif);
  12. width: 32px;
  13. height: 32px;
  14. margin: 0 auto;
  15. }
  16. .boxes-box-editor {
  17. width: 100%;
  18. }
  19. .box-empty .boxes-box-content {
  20. text-align: center;
  21. padding: 10px;
  22. opacity:.5;
  23. filter: alpha(opacity=5); /* For IE8 and earlier */
  24. background:#fff;
  25. color: #666;
  26. }