global.scss 613 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. /* Global Components */
  5. .pull-left {
  6. float: left;
  7. }
  8. .pull-right {
  9. float: right;
  10. }
  11. .clear-left {
  12. clear: left;
  13. }
  14. .clear-right {
  15. clear: right;
  16. }
  17. .clear-both {
  18. clear: both;
  19. }
  20. .hidden {
  21. display: none;
  22. }
  23. .hidden-visually {
  24. position: absolute;
  25. left: -10000px;
  26. top: -10000px;
  27. width: 1px;
  28. height: 1px;
  29. overflow: hidden;
  30. }
  31. .bold {
  32. font-weight:600;
  33. }
  34. .center {
  35. text-align:center;
  36. }
  37. .inlineblock {
  38. display: inline-block;
  39. }