app.css 903 B

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