Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.03 KB | None | 0 0
  1. body {
  2. color: #1e1e1e;
  3. }
  4.  
  5. /* move docked blocks on left margin below custom menu bar */
  6. #dock .dockeditem_container {
  7. margin-top: 115px;
  8. }
  9.  
  10. /* BEGIN user menu mods */
  11. .jsenabled .usermenu .moodle-actionmenu.show .menu a:hover {
  12. background-color: #178CCB;
  13. background-image: none;
  14. }
  15.  
  16. .usermenu .moodle-actionmenu .toggle-display .userbutton .usertext {
  17. font-weight: 600;
  18. }
  19.  
  20. /* increase size of messages and notification counters in header */
  21. .navbar .count-container {
  22. font-size: 12px;
  23. font-weight: bold;
  24. }
  25.  
  26. /* END user menu mods */
  27.  
  28. /* BEGIN changes to the messaging interface */
  29. .messaging-area-container .messaging-area .messages-area .messages .message .content.right {
  30. border: 1px solid #4f94cd;
  31. }
  32.  
  33. .messaging-area-container .messaging-area .messages-area .messages .message .content.left {
  34. border: 1px solid #ededee;
  35. }
  36.  
  37. .messaging-area-container .messaging-area .messages-area .messages .message .content.right {
  38. background-color: #4f94cd;
  39. color: #fff;
  40. font-size: 13px;
  41. font-weight: 600;
  42. }
  43.  
  44. .messaging-area-container .messaging-area .messages-area .messages .message .content.left {
  45. background-color: #ededee;
  46. color: #000;
  47. font-size: 13px;
  48. font-weight: 600;
  49. }
  50.  
  51. .messaging-area-container .messaging-area .messages-area .messages .message .content.left .timesent {
  52. color: #000;
  53. }
  54.  
  55. .messaging-area-container .messaging-area .messages-area .messages .message .content.right .timesent {
  56. color: #fff;
  57. }
  58.  
  59. /* END changes to the messaging interface */
  60.  
  61. img.small-logo {
  62. height: 30px;
  63. width: 125px;
  64. }
  65.  
  66. .navbar .brand {
  67. margin-top: 5px;
  68. font-weight: 600;
  69. color: #052049;
  70. text-shadow: none;
  71. padding: 7px 30px 10px;
  72. }
  73.  
  74. /* reduces spacing after custom menu */
  75. .ucsf-custom-menu {
  76. margin-bottom: 10px;
  77. }
  78.  
  79. .breadcrumb {
  80. background-color: #fff;
  81. font-weight: bold;
  82. }
  83.  
  84. /* unlinked breadcrumb items appear grey */
  85. .breadcrumb > li {
  86. color: #999999;
  87. }
  88.  
  89. .breadcrumb a {
  90. color: #506380;
  91. }
  92.  
  93. h1 {
  94. font-size: 22px
  95. }
  96.  
  97. h2 {
  98. font-size: 20px
  99. }
  100.  
  101. h1, h2, h3, h4, h5, h6 {
  102. color: #052049;
  103. }
  104.  
  105. /* changes block background color */
  106. .block {
  107. background-color: #f3fafc;
  108. }
  109.  
  110. /* changes block header background color */
  111. .block .header .title h2, .block h3.main {
  112. background-color: #506380;
  113. }
  114.  
  115. a {
  116. color: #116492;
  117. }
  118.  
  119. a:hover {
  120. color: #116492;
  121. }
  122.  
  123. .block a {
  124. color: #506380;
  125. }
  126.  
  127. .block a:hover {
  128. color: #506380;
  129. }
  130.  
  131. /* changes-reduces size of course title */
  132. .page-context-header .page-header-headings h1 {
  133. font-size: 21px;
  134. }
  135.  
  136. /* changes-reduces spacing after course title */
  137. .page-context-header {
  138. margin-bottom: -20px;
  139. }
  140.  
  141. /* modifies the Last Updated text at bottom of pages */
  142. .modified {
  143. font-size: 11px;
  144. padding-top: 25px;
  145. text-align: center;
  146. }
  147.  
  148. .main-footer {
  149. background: #fff;
  150. padding-top: 20px;
  151. }
  152.  
  153. #page-footer {
  154. border-top: 1px solid #d4d4d4;
  155. color: #333;
  156. }
  157.  
  158. #page-footer a {
  159. color: #116492;
  160. }
  161.  
  162. #page-footer a:hover {
  163. color: #116492;
  164. }
  165.  
  166. /* CUSTOM MENU CHANGES - BEGIN */
  167.  
  168. .ucsf-custom-menu .container-fluid {
  169. background-color: #506380;
  170. }
  171.  
  172. .ucsf-custom-menu .category-label {
  173. background: none;
  174. }
  175.  
  176. .ucsf-custom-menu .category-label {
  177. color: #fff;
  178. font-size: 14px;
  179. }
  180.  
  181. .ucsf-custom-menu .category-label a {
  182. color: #fff;
  183. font-size: 14px;
  184. }
  185.  
  186. .navbar .nav > li > a {
  187. color: #fff;
  188. text-shadow: none;
  189. }
  190.  
  191. /* change menu bar spacing */
  192. .ucsf-custom-menu .nav > li > a:last-child {
  193. padding-right: 15px;
  194. }
  195.  
  196. .ucsf-custom-menu .nav > li > a:after {
  197. content: " "
  198. }
  199.  
  200. /* change caret color to fff */
  201. .navbar .nav li.dropdown > .dropdown-toggle .caret {
  202. border-top-color: #fff;
  203. border-bottom-color: #fff;
  204. }
  205.  
  206. /* change hover color */
  207. .navbar .nav > li > a:hover {
  208. color: #ffdd00;
  209. }
  210.  
  211. /* change caret hover color */
  212. .navbar .nav li.dropdown > a:hover .caret {
  213. border-top-color: #ffdd00;
  214. border-bottom-color: #ffdd00;
  215. }
  216.  
  217. .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
  218. background-color: #ededee;
  219. color: #052049;
  220. }
  221.  
  222. /* change caret focus color */
  223. .navbar .nav li.dropdown > a:focus .caret {
  224. border-top-color: #052049;
  225. border-bottom-color: #052049;
  226. }
  227.  
  228. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  229. background: none;
  230. background-color: #052049 !important;
  231. }
  232.  
  233. /* CUSTOM MENU CHANGES - END */
  234.  
  235. /* CUSTOM MENU BAR WHEN RESPONSIVE */
  236.  
  237. @media (max-width: 979px) {
  238. .navbar .nav-collapse.in {
  239. background-color: #052049;
  240. }
  241.  
  242. .navbar .nav > li > a:hover {
  243. color: #000;
  244. }
  245.  
  246. .navbar .nav li.dropdown > a:hover .caret {
  247. border-top-color: #000;
  248. border-bottom-color: #000;
  249. }
  250.  
  251. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  252. background: none;
  253. color: #000;
  254. background-color: #ededee !important;
  255. }
  256.  
  257. .nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
  258. color: #fff;
  259. }
  260. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement