Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 line
342 B

  1. .brand-base {
  2. display: block;
  3. text-decoration: none;
  4. font-size: 1.5rem;
  5. font-weight: bold;
  6. font-stretch: 75%;
  7. text-transform: uppercase;
  8. width: 2rem;
  9. text-align: center;
  10. }
  11. .hide {
  12. display: none;
  13. }
  14. @media (min-width: 720px) {
  15. .brand-base {
  16. width: 8rem;
  17. text-align: left;
  18. }
  19. .hide {
  20. display: inline;
  21. }
  22. }