style.css 2.5 KB

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