app.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .split {
  2. position: fixed;
  3. z-index: 1;
  4. top: 0;
  5. overflow-x: hidden;
  6. height: 100%;
  7. }
  8. main > div {
  9. display: flex;
  10. flex-direction: row;
  11. height: 100%;
  12. }
  13. article:focus {
  14. background-color: silver;
  15. }
  16. .right {
  17. display: flex;
  18. overflow-x: hidden;
  19. border-left: 1px solid black;
  20. flex-direction: column;
  21. flex-wrap: wrap;
  22. }
  23. .left {
  24. display: flex;
  25. flex-direction: column;
  26. flex-basis: 75%;
  27. overflow-y: auto;
  28. }
  29. /*.sep {
  30. width: 1%;
  31. float: left;
  32. position: fixed;
  33. border-right: 1px solid black;
  34. border-left: 1px solid black;
  35. }*/
  36. body { overflow-x: hidden; }
  37. h1 { margin-top: 0; }
  38. .kui-header {
  39. position: fixed;
  40. top: 0;
  41. left: 0;
  42. right: 0;
  43. height: 12%;
  44. }
  45. .kui-software-key {
  46. position: fixed;
  47. bottom: 0;
  48. right: 0;
  49. left: 0;
  50. height: 10%;
  51. }
  52. main {
  53. position: fixed;
  54. height: 78%;
  55. top: 12%;
  56. bottom: 10%;
  57. left: 0;
  58. right: 0;
  59. }
  60. #menu {
  61. position: fixed;
  62. height: 78%;
  63. top: 12%;
  64. bottom: 10%;
  65. left: 0;
  66. right: 0;
  67. }
  68. .ownmsg {
  69. color: gray;
  70. }