The UI component of the AiteStory project.
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.

56 lines
858 B

  1. form {
  2. text-align: left;
  3. }
  4. input[type="text"], input[type="password"], textarea, button, .group {
  5. display: block;
  6. width: 100%;
  7. margin-bottom: 1em;
  8. box-sizing: border-box;
  9. background: none;
  10. border: none;
  11. outline: none;
  12. color: #678;
  13. font-size: 1em;
  14. padding: 0 0.5ch;
  15. }
  16. input[type="text"], input[type="password"], textarea {
  17. border-left: 1px solid #678;
  18. }
  19. input::placeholder, textarea::placeholder {
  20. color: #234;
  21. }
  22. input:focus, textarea:focus, button:focus, button:hover {
  23. color: #4bf;
  24. border-left-color: #4bf;
  25. }
  26. input.big {
  27. font-size: 1.25em;
  28. }
  29. textarea {
  30. resize: none;
  31. font-family: sans-serif;
  32. height: 6em;
  33. }
  34. textarea.tall {
  35. height: 20em;
  36. }
  37. button {
  38. font-size: 2em;
  39. }
  40. .radio-wrapper {
  41. text-indent: -1.25em;
  42. padding-left: 1.25em;
  43. padding-bottom: 0.25em;
  44. }
  45. ::-webkit-input-placeholder {
  46. color: #678;
  47. }