placeholder.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* ========================================================================
  2. Component: placeholder
  3. ========================================================================== */
  4. // Defines styles for placeholder boxes
  5. // Create a placeholder space that can be used for uploading files via drag and drop.
  6. // Based on uikit placeholder addon
  7. // ==========================================================================
  8. // Variables
  9. // ==========================================================================
  10. $placeholder-margin-vertical : 15px;
  11. $placeholder-padding : 20px;
  12. $placeholder-border : #ddd;
  13. $placeholder-background : #fafafa;
  14. $placeholder-color : #444;
  15. $placeholder-large-padding-vertical : 80px;
  16. // Placeholder container
  17. .box-placeholder {
  18. margin-bottom: $placeholder-margin-vertical;
  19. padding: $placeholder-padding;
  20. border: 1px dashed $placeholder-border;
  21. background: $placeholder-background;
  22. color: $placeholder-color;
  23. }
  24. // Remove margin from the last-child
  25. .box-placeholder> :last-child {
  26. margin-bottom: 0;
  27. }
  28. // Variant
  29. .box-placeholder-lg {
  30. padding-top: $placeholder-large-padding-vertical;
  31. padding-bottom: $placeholder-large-padding-vertical;
  32. }