eventman.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* nav-bar padding */
  2. body { padding-top: 70px; }
  3. /* logo padding */
  4. .navbar-brand {
  5. padding-top: 0px;
  6. padding-right: 0px;
  7. padding-bottom: 0px;
  8. }
  9. a:hover {
  10. color: #23527c;
  11. }
  12. /* fix styling for empty href */
  13. .nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
  14. /* Footer links */
  15. .main-footer {
  16. background-color: lightgray;
  17. text-align: center;
  18. padding: 4px;
  19. font-size: x-small;
  20. }
  21. /* margins for lists */
  22. .top5 { margin-top: 5px; }
  23. .top10 { margin-top: 10px; }
  24. .top15 { margin-top: 15px; }
  25. .top20 { margin-top: 20px; }
  26. .top30 { margin-top: 30px; }
  27. /* minimum widths for various input groups */
  28. .min50 { min-width: 50px; }
  29. .min70 { min-width: 70px; }
  30. .min70-compact { min-width: 70px; padding: 1px; }
  31. .min100 { min-width: 100px; }
  32. .min120 { min-width: 120px; }
  33. .min150 { min-width: 150px; }
  34. .min200 { min-width: 200px; }
  35. .min250 { min-width: 250px; }
  36. /* horizontally center */
  37. .hcenter {
  38. text-align: center;
  39. }
  40. /* vertically center */
  41. .vcenter {
  42. vertical-align: middle;
  43. display: inline-block !important;
  44. float: none;
  45. }
  46. /* pop-up message */
  47. .eventman-message {
  48. position: fixed;
  49. top: 2%;
  50. width: 40%;
  51. left: 30%;
  52. text-align: center;
  53. display: inline-block;
  54. z-index: 10000;
  55. }
  56. /* things to be invisible */
  57. .outside-screen {
  58. position: absolute;
  59. left: -9999px;
  60. width: 1px;
  61. height: 1px;
  62. }
  63. /* a small table with a fixed height */
  64. .small-table {
  65. height: 200px !important;
  66. overflow-x: hidden !important;
  67. overflow-y: scroll !important;
  68. }
  69. /* do not wrap elements inside this one */
  70. .nowrap {
  71. white-space: nowrap;
  72. }