Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. /* BAT WebInterface style file
  2. This file has two parts :
  3. - the first one doesn't modify color only font
  4. - the second one modify the color and produce an blue-orange theme
  5. If you want to keep bootstrap style or just want to remove the colours, just delete the second part */
  6.  
  7. /* 1st part => Basic styles : font and alignement */
  8. h1, h2{
  9. font-family: 'Bree Serif', serif;
  10. }
  11. body, .jumbotron p{
  12. font-family: 'TrebuchetSansMS', sans-serif;
  13. font-size: 14px;
  14. }
  15. td, th{
  16. text-align: center;
  17. }
  18. .table-bat tbody tr td, .valign tbody tr td{
  19. vertical-align: middle;
  20. }
  21. .profile-title{
  22. text-decoration: underline;
  23. }
  24. .navbar .divider-vertical {
  25. height: 50px;
  26. margin: 0 9px;
  27. border-right: 1px solid #E0E4CC;
  28. border-left: 1px solid #E0E4CC;
  29. }
  30. /* 2nd part => Below this line, the CSS may include color into the design */
  31. body{
  32. background: #ffffff;
  33. }
  34. .navbar-bat{
  35. font-family: 'Alegreya', sans-serif; font-size: 18px;
  36. }
  37. /* Navigation bar customization */
  38. #navbar-title{
  39. text-decoration: underline;
  40. font-weight: 900;
  41. color: white;
  42. }
  43. .navbar-bat{
  44. background: #FA6900;
  45. filter: none !important;
  46. box-shadow: 0 2px 15px rgba(0,0,0,0.25);
  47. -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.25);
  48. -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.25);
  49. border-bottom: 1px solid rgba(0,0,0,0.2);
  50. }
  51. .navbar-bat *{
  52. color: #E0E4CC;
  53. }
  54. .navbar-bat .nav li.active, .navbar-bat .nav li a:hover {
  55. background: #F38630;
  56. color: white;
  57. }
  58. .navbar-bat .nav li.display-only a:hover {
  59. background: #FA6900;
  60. color: #E0E4CC;
  61. }
  62. /* Table customization : colours and rounded borders */
  63. .table-bat {
  64. *border-collapse: collapse; /* IE7 and lower */
  65. border-spacing: 0;
  66. border-color: #A7DBD8;
  67. }
  68. .table-bat th:first-child {
  69. border-radius: 10px 0 0 0;
  70. }
  71. .table-bat th:last-child {
  72. border-radius: 0 10px 0 0;
  73. }
  74. .table-bat th:only-child{
  75. border-radius: 10px 10px 0 0;
  76. }
  77. /* Add spacing between row with an 2px border */
  78. .table-bat td{
  79. background: #E0E4CC;
  80. padding: 2px 0;
  81. border-width: 2px 0;
  82. border-color: #E3E3E3;
  83. border-style: solid;
  84. }
  85. .table-bat th{
  86. background: #F38630;
  87. }
  88. /* List customization */
  89. .profile-list{
  90. font-weight: bold;
  91. font-size: medium;
  92. font-family: 'Bree Serif', serif;
  93. }
  94. /* Need to implement own info because of priority */
  95. .info-bat td{
  96. background-color: #D9EDF7;
  97. }
  98. table tbody tr.warning td.danger-bat{
  99. background-color: #FFF2AD;
  100. }
  101. /* Customize jQuery autocompletion menu */
  102. .ui-menu{
  103. color: white;
  104. background: #69D2E7;
  105. border-color: white;
  106. width: 50px;
  107. border-radius: 0 0 10px 10px;
  108. list-style-type: none;
  109. }
  110. .ui-helper-hidden-accessible{
  111. display: none;
  112. }
  113. /* Misc */
  114. .input-text{
  115. color: white;
  116. background: #A7DBD8;
  117. }
  118. .btn-bat{
  119. color: white;
  120. background: #69D2E7;
  121. }
  122. .btn-bat-orange {
  123. color: #F2F7D9;
  124. background-color: #FA6900;
  125. border-color: #E0E4CC;
  126. }
  127. .lead{
  128. color: navy;
  129. }
  130. li .lead{
  131. font-family: 'TrebuchetSansMS', sans-serif;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement