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.

52 lines
796 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:focus, textarea:focus, button:focus, button:hover {
  20. color: #4bf;
  21. border-left-color: #4bf;
  22. }
  23. input.big {
  24. font-size: 1.25em;
  25. }
  26. textarea {
  27. resize: none;
  28. font-family: sans-serif;
  29. height: 6em;
  30. }
  31. textarea.tall {
  32. height: 20em;
  33. }
  34. button {
  35. font-size: 2em;
  36. }
  37. .radio-wrapper {
  38. text-indent: -1.25em;
  39. padding-left: 1.25em;
  40. padding-bottom: 0.25em;
  41. }
  42. ::-webkit-input-placeholder {
  43. color: #678;
  44. }