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.

frontpage.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @import "//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css";
  2. body {
  3. padding-top: 50px;
  4. }
  5. .starter-template {
  6. padding: 40px 15px;
  7. text-align: center;
  8. }
  9. .footer {
  10. padding-top: 40px;
  11. padding-bottom: 40px;
  12. margin-top: 40px;
  13. border-top: 1px solid #eee;
  14. }
  15. .alert {
  16. margin-bottom: 0;
  17. }
  18. .help-block {
  19. display: none;
  20. }
  21. .navbar-form {
  22. margin-right: 0;
  23. }
  24. /* Home page styling */
  25. .corporate-jumbo {
  26. background-image: url('/static/img/frontpage/mt-fuji-477832_1280.jpg');
  27. background-repeat: no-repeat;
  28. background-attachment: fixed;
  29. background-position: 0 0;
  30. -webkit-background-size: cover;
  31. background-size: cover;
  32. color: #f5f5f5;
  33. }
  34. .corporate-jumbo .well {
  35. background-color: rgba(245, 245, 245, .7);
  36. }
  37. .corporate-jumbo p, .corporate-jumbo h1 {
  38. color: #eee;
  39. text-shadow: 0px 0px 2px black;
  40. }
  41. .corporate-jumbo p {
  42. font-weight: 500;
  43. }
  44. .corporate-jumbo .well legend {
  45. color: #333;
  46. }
  47. .contact-banner {
  48. padding: 100px 0;
  49. background: #e0e0e0;
  50. margin-top: 100px;
  51. }
  52. .footer a:hover {
  53. text-decoration: none;
  54. }
  55. /* Login Form */
  56. .form-signin {
  57. max-width: 330px;
  58. padding: 15px;
  59. margin: 0 auto;
  60. }
  61. .form-signin .form-signin-heading,
  62. .form-signin .checkbox {
  63. margin-bottom: 10px;
  64. }
  65. .form-signin .checkbox {
  66. font-weight: normal;
  67. }
  68. .form-signin .form-control {
  69. position: relative;
  70. height: auto;
  71. -webkit-box-sizing: border-box;
  72. -moz-box-sizing: border-box;
  73. box-sizing: border-box;
  74. padding: 10px;
  75. font-size: 16px;
  76. }
  77. .form-signin .form-control:focus {
  78. z-index: 2;
  79. }
  80. .form-signin input[type="text"] {
  81. margin-bottom: -1px;
  82. border-bottom-right-radius: 0;
  83. border-bottom-left-radius: 0;
  84. }
  85. .form-signin input[type="password"] {
  86. margin-bottom: 10px;
  87. border-top-left-radius: 0;
  88. border-top-right-radius: 0;
  89. }