You are here

show-grid.css in AT Tools 8.3

/*
  This file is hard coded to support the Site Builder layout. If you alter the grid in the Site Builder
  layout you can turn on debugging manually in the $susy global settings, SEE _site-builder-base.scss.
*/

head {
  display: block;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  color: #333;
  background: rgba(255, 255, 255, 0.25);
}
head:before {
  content: "|||";
  display: block;
  padding: 5px 10px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
}
head:hover {
  background: rgba(255, 255, 255, 0.5);
  color: red;
}
head:hover ~ .regions, head:hover ~ body .regions {
  position: relative;
}
head:hover ~ .regions:before, head:hover ~ body .regions:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  z-index: 998;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(38, 38, 38, 0.25) 76.19048%, transparent 76.19048%);
  background-size: 8.50202%;
  background-origin: content-box;
  background-clip: content-box;
  background-position: left top;
  margin: 0 1rem;
}

File

at_theme_generator/starterkits/starterkit/styles/css/show-grid.css
View source
  1. /*
  2. This file is hard coded to support the Site Builder layout. If you alter the grid in the Site Builder
  3. layout you can turn on debugging manually in the $susy global settings, SEE _site-builder-base.scss.
  4. */
  5. head {
  6. display: block;
  7. position: fixed;
  8. left: 10px;
  9. bottom: 10px;
  10. z-index: 999;
  11. color: #333;
  12. background: rgba(255, 255, 255, 0.25);
  13. }
  14. head:before {
  15. content: "|||";
  16. display: block;
  17. padding: 5px 10px;
  18. font-family: sans-serif;
  19. font-size: 16px;
  20. font-weight: bold;
  21. }
  22. head:hover {
  23. background: rgba(255, 255, 255, 0.5);
  24. color: red;
  25. }
  26. head:hover ~ .regions, head:hover ~ body .regions {
  27. position: relative;
  28. }
  29. head:hover ~ .regions:before, head:hover ~ body .regions:before {
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. bottom: 0;
  34. right: 0;
  35. content: " ";
  36. z-index: 998;
  37. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(38, 38, 38, 0.25) 76.19048%, transparent 76.19048%);
  38. background-size: 8.50202%;
  39. background-origin: content-box;
  40. background-clip: content-box;
  41. background-position: left top;
  42. margin: 0 1rem;
  43. }