A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
726B

  1. .querybox {
  2. display: block;
  3. max-width: 640px;
  4. height: 32px;
  5. margin: 0 auto;
  6. border: outset 1px #333;
  7. }
  8. .querybox .inputwrapper,
  9. .querybox .buttonwrapper {
  10. display: block;
  11. float: left;
  12. width: 80%;
  13. height: 100%;
  14. background: #bbb;
  15. }
  16. .querybox .buttonwrapper {
  17. width: 20%;
  18. background: #666;
  19. }
  20. .querybox .inputwrapper input,
  21. .querybox .buttonwrapper input {
  22. display: block;
  23. margin: 0;
  24. padding: 0;
  25. line-height: 32px;
  26. height: 32px;
  27. width: 100%;
  28. border: none;
  29. outline: none;
  30. background: transparent;
  31. }
  32. .querybox .inputwrapper input {
  33. color: #000;
  34. text-indent: 10px;
  35. }
  36. .querybox .buttonwrapper input {
  37. border-left: outset 1px #333;
  38. color: #bbb;
  39. }
  40. .row.login.message {
  41. text-align: center;
  42. color: #aaa;
  43. }