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.

styles.css 728B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body {
  2. font-family: Helvetica;
  3. padding-left: 15px;
  4. }
  5. .form {
  6. background-color: #eee;
  7. width: 580px; /* Breite des Formulars */
  8. padding: 20px;
  9. border: 1px solid #8c8c8c;
  10. position: absolute;
  11. margin-bottom: 25px;
  12. }
  13. .control {
  14. display: flex;
  15. }
  16. label {
  17. width: 100px;
  18. cursor: pointer;
  19. }
  20. input,
  21. textarea {
  22. width: 550px;
  23. border: 1px solid #8c8c8c;
  24. margin-bottom: 1em;
  25. }
  26. span.title {
  27. font-size: x-large;
  28. }
  29. .clear-fix {
  30. clear: both;
  31. }
  32. .blog-entry {
  33. width: 600px;
  34. display: flex;
  35. padding-bottom: 30px;
  36. }
  37. button {
  38. float: right;
  39. padding-right: 20px;
  40. }
  41. .blog-image {
  42. width: 30%;
  43. }
  44. img {
  45. max-width: 90%;
  46. max-height: 100px;
  47. }
  48. .blog-summary {
  49. width: 70%;
  50. }
  51. textarea {
  52. height: 7em;
  53. }