1234567891011121314151617181920212223242526272829303132 |
- /* copy of default_scorm.css */
- #learning_path_breadcrumb_zone .breadcrumb{
- background: #05abe0; /* Old browsers */
- background: -moz-linear-gradient(top, #05abe0 0%, #2e75a3 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#05abe0), color-stop(100%,#2e75a3)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #05abe0 0%,#2e75a3 100%); /* IE10+ */
- background: linear-gradient(to bottom, #05abe0 0%,#2e75a3 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#05abe0', endColorstr='#2e75a3',GradientType=0 ); /* IE6-9 */
- color: #fff;
- text-transform: capitalize;
- border:none;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- border-radius: 1px;
- }
- #learning_path_breadcrumb_zone .breadcrumb a{
- color: #FFF;
- }
- #learning_path_breadcrumb_zone .breadcrumb a:hover{
- text-decoration: none;
- opacity: 0.8;
- }
- #scorm_title {
- font-weight: bold;
- background:none;
- background-image: none;
- color: #0088aa;
- padding-top: 5px;
- padding-bottom: 5px;
- }
|