views.less 896 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // view-specific
  2. // reset background
  3. .v-get-started,
  4. .v-store,
  5. .v-accessibility {
  6. background: @alert-well-bg; // resetting for depth
  7. }
  8. // get started
  9. .v-get-started {
  10. .get-started-cdn {
  11. background: @section-emphasized-bg;
  12. }
  13. .jumbotron {
  14. border-bottom: none;
  15. }
  16. // sections
  17. .get-started-cdn {
  18. z-index: 2;
  19. position: relative;
  20. border-radius: @border-radius-base;
  21. padding: @buffer-sm @buffer-xl @buffer-lg @buffer-xl;
  22. }
  23. .hr .hr-text {
  24. background: @alert-well-bg;
  25. font-family: @font-family-serif;
  26. font-size: (@font-size-large*1.5);
  27. }
  28. }
  29. // accessibility
  30. .v-accessibility {
  31. .accessibility-cdn {
  32. background: @section-emphasized-bg;
  33. border-radius: @border-radius-base;
  34. padding: @buffer-lg;
  35. }
  36. .hr .hr-text {
  37. background: @alert-well-bg;
  38. font-family: @font-family-serif;
  39. font-size: (@font-size-large*1.5);
  40. }
  41. }