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 772B

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