Me learning react like an absolute chungus
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

74 行
1.0KB

  1. html {
  2. background-color: #383c4a;
  3. }
  4. .header {
  5. color: #ddd;
  6. background-color: #2a2e3a;
  7. vertical-align: middle;
  8. }
  9. .header > button {
  10. height: 100%;
  11. display: block;
  12. float: right;
  13. margin-top: auto;
  14. margin-bottom: auto;
  15. width: 150px;
  16. font-size: 16pt;
  17. color: #ddd;
  18. border-style: line;
  19. background-color: #404552;
  20. }
  21. /* For some reason, the CSS i need to use to get this to work isn't coming to me >:( */
  22. .KBColumn {
  23. display: flex;
  24. text-align: center;
  25. flex-direction: column;
  26. justify-content:flex-start;
  27. float: left;
  28. width: initial;
  29. position: relative;
  30. height: auto;
  31. flex-grow: inherit;
  32. border-color: #ddd;
  33. border-width: 2px;
  34. min-width: 200px;
  35. min-height: 800px;
  36. border-style: solid;
  37. color: "orange";
  38. margin: 5px;
  39. padding: 5px;
  40. }
  41. .taskWrapper{
  42. display: flex;
  43. min-height: 100px;
  44. flex-direction: row;
  45. align-items: stretch;
  46. position: relative;
  47. }
  48. .prioBlock{
  49. order: 1;
  50. flex: 1;
  51. display: flex;
  52. overflow:hidden;
  53. }
  54. .taskText{
  55. order: 5;
  56. flex: 5;
  57. height: 100%;
  58. }
  59. .panel {
  60. width: 100%;
  61. }