Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.

mobile.css 407B

12345678910111213141516171819202122232425262728
  1. .title {
  2. font-size: 65px;
  3. }
  4. h2 small {
  5. color: rgb(228, 122, 35);
  6. font-size: large;
  7. }
  8. h2 {
  9. background-color: #607d8b;
  10. color: #ffffff;
  11. }
  12. img {
  13. display: block;
  14. margin-left: auto;
  15. margin-right: auto;
  16. width: 50%;
  17. }
  18. .shadow-textarea textarea.form-control::placeholder {
  19. font-weight: 300;
  20. }
  21. .shadow-textarea textarea.form-control {
  22. padding-left: 0.8rem;
  23. }