Advertisement
Guest User

Untitled

a guest
Aug 14th, 2015
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. .flow-right {
  2. flow-children: right;
  3. }
  4. .flow-down {
  5. flow-children: down;
  6. }
  7. .scroll-x {
  8. overflow: scroll squish;
  9. }
  10. .fill {
  11. width: 100%;
  12. height: 100%;
  13. }
  14. .fill-height {
  15. height: 100%;
  16. }
  17. .fill-width {
  18. width: 100%;
  19. }
  20. .even-space-vertical {
  21. height: fill-parent-flow(1);
  22. }
  23. .half-space-vertical {
  24. height: fill-parent-flow(0.5);
  25. }
  26. .even-space-horiz {
  27. width: fill-parent-flow(1);
  28. }
  29. .margin-4 {
  30. margin: 4px;
  31. }
  32. .text-center {
  33. text-align: center;
  34. }
  35. .panel-center {
  36. vertical-align: center;
  37. horizontal-align: center;
  38. }
  39. .panel-right {
  40. horizontal-align: right;
  41. }
  42. .panel-left {
  43. horizontal-align: left;
  44. }
  45. .panel-bottom {
  46. vertical-align: bottom;
  47. }
  48. .panel-top {
  49. vertical-align: top;
  50. }
  51. .panel-center-vertical {
  52. vertical-align: center;
  53. }
  54. .square {
  55. width: height-percentage(100%);
  56. }
  57. .hero-icon {
  58. width: height-percentage(155%);
  59. }
  60. .is-visible {
  61. opacity: 1;
  62. }
  63. .is-not-visible {
  64. opacity: 0;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement