default.css 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #contenthost {
  2. height: 100%;
  3. width: 100%;
  4. }
  5. .fragment {
  6. /* Define a grid with rows for a banner and a body */
  7. -ms-grid-columns: 1fr;
  8. -ms-grid-rows: 128px 1fr;
  9. display: -ms-grid;
  10. height: 100%;
  11. width: 100%;
  12. }
  13. .fragment header[role=banner] {
  14. /* Define a grid with columns for the back button and page title. */
  15. -ms-grid-columns: 37px 83px 1fr;
  16. -ms-grid-rows: 1fr;
  17. display: -ms-grid;
  18. }
  19. .fragment header[role=banner] .win-navigation-backbutton {
  20. -ms-grid-column: 2;
  21. margin-top: 57px;
  22. position: relative;
  23. z-index: 1;
  24. }
  25. .fragment header[role=banner] .titlearea {
  26. -ms-grid-column: 3;
  27. margin-top: 37px;
  28. }
  29. .fragment header[role=banner] .titlearea .pagetitle {
  30. width: calc(100% - 20px);
  31. }
  32. .fragment section[role=main] {
  33. -ms-grid-row: 2;
  34. height: 100%;
  35. width: 100%;
  36. }