layout.scss 457 B

123456789101112131415161718
  1. #layout {
  2. #align {
  3. .btn-group {
  4. height: 120px;
  5. width: 180px;
  6. position: relative;
  7. .btn {
  8. position: absolute;
  9. display: inline-block;
  10. &.top { top: 0px; left: 50%; margin-left: -30px; }
  11. &.bottom { bottom: 0px; left: 50%; margin-left: -30px; }
  12. &.left { left: 0px; top: 50%; margin-top: -30px; }
  13. &.right { right: 0px; top: 50%; margin-top: -30px; }
  14. }
  15. }
  16. }
  17. }