A simple ticketing application written in Python/Django
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.

style.css 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. body { padding-top: 50px; }
  2. #title { font-size: 35px; }
  3. #header_icon { float: left; padding: 20px; }
  4. #header_subtitle { color: #737373; }
  5. .jumbotron h1 {font-size: 45px; }
  6. /* Anpassungen des Standard Bootstrap CSS */
  7. /* Größe und Ausrichtung der Überschriften */
  8. .page-header {
  9. padding-bottom: 9px;
  10. margin: 24px 0px 20px;
  11. border-bottom: 1px solid #EEE;
  12. }
  13. .page-header h1 { font-size: 32px; }
  14. /* ========================= */
  15. h2 { font-size: 25px; }
  16. .hs-infobox {
  17. margin-right: 0px;
  18. margin-left: 0px;
  19. margin-top: 20px;
  20. margin-bottom: 10px;
  21. background-color: #EEE;
  22. border-color: #DDD;
  23. border-width: 1px;
  24. border-radius: 4px 4px 0px 0px;
  25. box-shadow: none;
  26. position: relative;
  27. padding: 10px 10px 10px;
  28. border-style: solid;
  29. }
  30. .hs-infobox-title { color: #959595;
  31. text-transform: uppercase;
  32. letter-spacing: 1px;
  33. font-weight: bold;
  34. font-size: 12px;
  35. margin-bottom: 10px;
  36. }
  37. .hs-infobox ul { list-style-type: square; padding-left: 25px; }
  38. .hs-infobox ul > li {
  39. color: #9f9f9f;
  40. }
  41. .hs-infobox ul > li > span {
  42. color: black;
  43. }
  44. .hs-generate-button { float: right; margin-top: 20px; }
  45. /* Bearbeiten-Links in der Fragebogen-Übersicht */
  46. .hs-edit-link { font-size: 16px; }
  47. .hs-edit-link:hover { color: grey; }
  48. .navbar .fa { font-size: 18px; }