bootstrap-accessibility.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .bootstrap-scope .btn:focus {
  2. outline: dotted 2px black;
  3. }
  4. .bootstrap-scope div.active:focus {
  5. outline: dotted 1px black;
  6. }
  7. .bootstrap-scope a:focus {
  8. outline: dotted 1px black;
  9. }
  10. .bootstrap-scope .close:hover, .close:focus {
  11. outline: dotted 1px black;
  12. }
  13. .bootstrap-scope .nav > li > a:hover, .nav > li > a:focus {
  14. outline: dotted 1px black;
  15. }
  16. .bootstrap-scope .carousel-inner > .item {
  17. position: absolute;
  18. top: -999999em;
  19. display: block;
  20. -webkit-transition: 0.6s ease-in-out left;
  21. -moz-transition: 0.6s ease-in-out left;
  22. -o-transition: 0.6s ease-in-out left;
  23. transition: 0.6s ease-in-out left;
  24. }
  25. .bootstrap-scope .carousel-inner > .active {
  26. top: 0;
  27. }
  28. .bootstrap-scope .carousel-inner > .active,
  29. .bootstrap-scope .carousel-inner > .next,
  30. .bootstrap-scope .carousel-inner > .prev {
  31. position: relative;
  32. }
  33. .bootstrap-scope .carousel-inner > .next,
  34. .bootstrap-scope .carousel-inner > .prev {
  35. position: absolute;
  36. top: 0;
  37. width: 100%;
  38. }
  39. .bootstrap-scope .alert-success {
  40. color: #2d4821;
  41. }
  42. .bootstrap-scope .alert-info {
  43. color: #214c62;
  44. }
  45. .bootstrap-scope .alert-warning {
  46. color: #6c4a00;
  47. background-color: #f9f1c6;
  48. }
  49. .bootstrap-scope .alert-danger {
  50. color: #d2322d;
  51. }
  52. .bootstrap-scope .alert-danger:hover {
  53. color: #a82824;
  54. }