default.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. }
  37. /*
  38. Custom css to be applied on all pages
  39. */
  40. #loadingText {
  41. /*color: #888888;
  42. cursor: default;
  43. font-size: 30px;
  44. height: 60px;
  45. left: 0;
  46. margin-top: -30px;*/
  47. /*padding-top: 10px;*/
  48. /*position: absolute;
  49. text-align: center/
  50. top: 50%;
  51. transition: transform 0.25s ease-in-out 0s;
  52. width: 100%;
  53. z-index: 3;*/
  54. }
  55. .loadingText {
  56. transform: translateX(120%);
  57. }
  58. #loadingBack {
  59. /*background-color: #FFFFFF;
  60. border: 1px solid #888888;*/
  61. /*cursor: default;
  62. height: 60px;
  63. left: 0;
  64. margin-top: -30px;*/
  65. /*position: absolute;
  66. top: 50%;
  67. transition: transform 0.25s ease-in-out 0s;
  68. width: 100%;
  69. z-index: 3;*/
  70. }
  71. .loadingBack {
  72. transform: translateX(-120%);
  73. }