Guest User

Untitled

a guest
Dec 7th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. /*
  2. * Custom CSS for canvas.tue.nl
  3. * Author: Casper Smits
  4. */
  5.  
  6. /* Global colours */
  7. :root {
  8. /* Active item in sidebar menu */
  9. --ic-brand-global-nav-menu-item__text-color--active: black;
  10. --ic-brand-global-nav-ic-icon-svg-fill--active: black;
  11.  
  12. /* Sub menu active item */
  13. --ic-brand-primary: #128e2d;
  14.  
  15. --ic-brand-primary-lightened-15: #128e2d;
  16. }
  17.  
  18. /* Sidebar menu */
  19. #header {
  20. background-color: #128e2d;
  21. box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
  22. }
  23. /* Logo in sidebar menu*/
  24. .ic-app-header__logomark {
  25. display: none !important;
  26. }
  27.  
  28. /* Cards */
  29. .ic-DashboardCard {
  30. display: block;
  31. width: auto;
  32. box-shadow: none;
  33. margin: 10px 0px;
  34. border-bottom: 1px dashed #ccc;
  35. }
  36. .ic-DashboardCard:hover, .ic-DashboardCard:hover div {
  37. box-shadow: none !important;
  38. background-color: #e2ffec;
  39. }
  40. .ic-DashboardCard__link {
  41. position: absolute;
  42. width: 100%;
  43. height: 60px;
  44. }
  45. .ic-DashboardCard__header_image, .ic-DashboardCard__header_hero {
  46. display: none;
  47. }
  48. .ic-DashboardCard__header-subtitle, .ic-DashboardCard__header-term {
  49. display: none;
  50. }
  51. .ic-DashboardCard__header-title {
  52. font-size: 1.5em;
  53. }
  54. .ic-DashboardCard__header_content {
  55. float: left;
  56. }
  57. .ic-DashboardCard__action-container {
  58. float: right;
  59. }
  60. .ic-DashboardCard__action-container > a {
  61. padding: 0 20px;
  62. }
  63.  
  64. input {
  65. transition: none !Important;
  66. }
  67.  
  68. #section-tabs-header-subtitle {
  69. display: none !important;
  70. }
  71.  
  72. .page-title:first-letter {
  73. text-transform: uppercase;
  74. }
Add Comment
Please, Sign In to add comment