A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

login.css 726B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. }