cas.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // Bootstrap and its default variables
  2. @import "components/variables";
  3. @import "../../../node_modules/bootstrap/scss/bootstrap";
  4. @import "mixins/buttons";
  5. @import "partials/messages";
  6. @import "components/login";
  7. @import "components/footer";
  8. @import "components/buttons";
  9. html {
  10. position: relative;
  11. min-height: 100%;
  12. }
  13. body {
  14. /* Margin bottom by footer height */
  15. margin-bottom: 60px;
  16. }
  17. body>.container {
  18. padding: 65px 15px 0;
  19. }
  20. a {
  21. color: $link-color;
  22. }
  23. .logo {
  24. height: 40px;
  25. width: 80px;
  26. display: block;
  27. }
  28. header {
  29. & > .navbar {
  30. background-color: $navbar-background-color;
  31. color: color-yiq($navbar-background-color);
  32. .logo {
  33. path.cls-1 {
  34. @if lightness($navbar-background-color) > lightness(#aaa) {
  35. fill: theme-color("cas-primary");
  36. } @else {
  37. fill: white;
  38. }
  39. }
  40. }
  41. }
  42. }
  43. // Cards
  44. .card {
  45. margin-bottom: 2em;
  46. }
  47. #cas-resource-list {
  48. background-color: $cas-resource-list-background-color;
  49. }
  50. #cookiesDisabled.card {
  51. background-color: $cookies-disabled-background-color;
  52. color: color-yiq($cookies-disabled-background-color);
  53. }
  54. #staticAuthentication.card {
  55. background-color: $default-auth-background-color;
  56. color: color-yiq($default-auth-background-color);
  57. }
  58. #serviceui.alert {
  59. background-color: $serviceui-alert-background-color;
  60. color: color-yiq($serviceui-alert-background-color);
  61. }
  62. #insecureNotice.card {
  63. background-color: $insecure-notice-background-color;
  64. color: color-yiq($insecure-notice-background-color);
  65. }