style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. * {
  2. box-sizing: border-box;
  3. -webkit-box-sizing: border-box;
  4. }
  5. html,body {
  6. font-family: 'Open Sans';
  7. position:Relative;
  8. width:100%;
  9. height:100%;
  10. padding:0px;
  11. margin:0px;
  12. }
  13. .flex-column {
  14. width:100%;
  15. height:100%;
  16. display:flex;
  17. flex-direction:column;
  18. }
  19. .flex-column > * {
  20. padding:10px;
  21. margin:10px;
  22. }
  23. .flex-row {
  24. width:100%;
  25. display:flex;
  26. flex-direction:row;
  27. align-items:center;
  28. justify-content:center;
  29. padding:0px;
  30. margin:0px;
  31. }
  32. .flex-row > *{
  33. flex-grow:1;
  34. }
  35. .output {
  36. height:100%;
  37. border: solid 1px rgba(0,0,0,0.1);
  38. overflow-y:auto;
  39. }
  40. .output p {
  41. margin: 2px 2px 2px 2px;
  42. }
  43. .output p.error {
  44. color: #F55;
  45. }
  46. button {
  47. margin: 10px 10px 10px 10px;
  48. padding: 10px 20px 10px 20px;
  49. background: #555;
  50. color: #FFF;
  51. border:none;
  52. font-size: 16px;
  53. font-weight:bold;
  54. }
  55. button:hover {
  56. background: #888;
  57. }
  58. .request {
  59. }
  60. .layout-container {
  61. background: #EEE;
  62. }
  63. .hpane {
  64. background: #FFF;
  65. box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.3);
  66. }
  67. .hpane >header {
  68. background: #EEE;
  69. color:#333;
  70. }
  71. .hpane .hcontent {
  72. background: #FFF;
  73. }
  74. section.horizontal > *:first-child {
  75. margin-bottom:9px;
  76. }
  77. section.vertical > *:first-child {
  78. margin-right:9px;
  79. }
  80. ul.entry-list {
  81. list-style-type: none;
  82. display:flex;
  83. padding:0px;
  84. margin:0px;
  85. flex-direction: column;
  86. }
  87. .entry-list > li {
  88. rborder: solid 1px #F00;
  89. display:flex;
  90. flex-direction:row;
  91. height:48px;
  92. align-items: center;
  93. justify-content: center;
  94. margin:10px;
  95. }
  96. .entry-list > li > * {
  97. margin:0px;
  98. padding:0px;
  99. display:flex;
  100. align-items:center;
  101. justify-content:center;
  102. width:100%;
  103. height:100%;
  104. }
  105. .entry-list > li > input[type=text] {
  106. /*border:none;
  107. border-bottom: solid 1px #555;*/
  108. }
  109. .entry-list > li > .entry-name {
  110. font-weight: bold;
  111. align-items:right;
  112. padding:10px;
  113. margin-right:10px;
  114. flex:auto;
  115. text-align:right;
  116. }
  117. .entry-list > li> .entry-content {
  118. text-align:center;
  119. padding:10px;
  120. margin-right:10px;
  121. }
  122. .entry-list > li > .entry-remove
  123. {
  124. padding:0px;
  125. margin:0px;
  126. width:47px;
  127. min-width:47px;
  128. }
  129. .hpane.requester {
  130. flex-grow:0.2;
  131. min-height: fit-content;
  132. min-height: 160px;
  133. }
  134. .output-clear {
  135. background:Transparent;
  136. color:#333;
  137. margin:0px;
  138. padding:2px;
  139. float:right;
  140. }
  141. .output-clear:hover {
  142. background:Transparent;
  143. color:#777;
  144. }
  145. }