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

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