style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. H2 {
  2. font-weight: 900;
  3. text-transform: uppercase;
  4. }
  5. .btn-blue {
  6. background: #FFFFFF;
  7. color: #000000;
  8. border: 0px;
  9. }
  10. .btn-blue:hover{
  11. background: #FFFFFF;
  12. color: #000000;
  13. }
  14. .btn-blue:focus{
  15. background: #FFFFFF;
  16. color: #000000;
  17. }
  18. .bubble
  19. {
  20. /* position: relative;
  21. width: 285px;
  22. height: 120px;
  23. padding: 0px;
  24. background: #FFFFFF;
  25. -webkit-border-radius: 1px;
  26. -moz-border-radius: 1px;
  27. border-radius: 1px; */
  28. }
  29. .bubble:after
  30. {
  31. content: '';
  32. position: absolute;
  33. border-style: solid;
  34. border-width: 0 11px 11px;
  35. border-color: #FFFFFF transparent;
  36. display: block;
  37. width: 0;
  38. z-index: 1;
  39. top: -11px;
  40. left: 26px;
  41. }
  42. .bubble:before
  43. {
  44. content: '';
  45. position: absolute;
  46. border-style: solid;
  47. border-width: 0 11px 11px;
  48. border-color: #7F7F7F transparent;
  49. display: block;
  50. width: 0;
  51. z-index: 0;
  52. top: -12px;
  53. left: 26px;
  54. }
  55. .dropdown-menu-caption {
  56. background-color:#FFFFFF;
  57. font-size: 14px;
  58. }
  59. #footerCont {
  60. position: fixed;
  61. top: 2000px;
  62. left:-10px;
  63. width: 102%;
  64. border: 1px solid #C2DBF2;
  65. padding: 7px;
  66. background: white;
  67. opacity: 0.3;
  68. color:white;
  69. font-family: Arial,Sans,Vardana;
  70. font-size: 12px;
  71. text-align: center;
  72. z-index: 99998;
  73. }
  74. #footer {
  75. position: fixed;
  76. float: right;
  77. top: 2000px;
  78. left:-10px;
  79. width: 100%;
  80. border: 0px solid #C2DBF2;
  81. padding: 7px;
  82. opacity: 1.0;
  83. color:black;
  84. font-family: Arial,Sans,Vardana;
  85. font-size: 12px;
  86. font-weight: 400;
  87. text-align: right;
  88. z-index: 99999;
  89. }
  90. .search-options-table {
  91. width: 250px;
  92. padding: 10px;
  93. }