123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /*
- Theme Name: Frame Scorm
- URI Project: http://www.chamilo.org
- Description: Styles main base of Chamilo LMS appearance, works with Bootstrap 3.0.x
- Author:
- alex.aragon@beeznest.com
- Version: 1.0
- */
- @import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,300italic,400italic);
- @import url(../assets/fontawesome/css/font-awesome.min.css);
- body{
- color: #666;
- font-family: 'Open Sans', sans-serif;
- line-height: 30px;
-
- }
- a{
- text-decoration: none;
- color: #00829C;
- }
- a:hover{
- text-decoration: underline;
- }
- .ck{
- display: block;
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- font-size-adjust: none;
- font-stretch: normal;
- font-feature-settings: normal;
- font-language-override: normal;
- font-kerning: auto;
- font-synthesis: weight style;
- font-variant: normal;
- }
- .ck-article{
- text-transform: uppercase;
- color: #E95839;
- font-weight: bold;
- background: url(../../main/img/document/border-title.png) repeat-x 0 80%;
- padding-bottom: 2%;
- margin-bottom: 10px;
- }
- .ck-article:before{
- content: "\f15c";
- margin-right: 5px;
- font-family: FontAwesome;
- font-weight: normal;
- }
- .ck-paragraph-box{
- background-color: #F5EEE2;
- padding: 2% 3%;
- line-height: 20px;
- }
- .ck-title{
- display: block;
- font-weight: bold;
- color: #000;
- }
- .ck-title2{
- padding-top: 0;
- margin-top: 0;
- font-weight: 500;
- position: relative;
- color: #000;
- }
- .ck-title2:after{
- background-color:#E95839;
- margin: 10px 0px 0px;
- width: 50px;
- height: 2px;
- display: block;
- content: "";
-
- }
- figure .image.alignleft{
- margin: 0 20px 20px 0;
- }
- figure .image.alignright{
- margin: 0 20px 0px 20px;
- }
- figure .image{
- margin: 0 20px 0px 20px;
- }
- figure figcaption{
- text-align: left;
- background-color: #f3f3f3;
- padding-top: 0px;
- margin: 0px;
- border-radius: 0px;
- padding-left: 5px;
- }
- figure{
- border: 1px solid #ddd;
- margin-bottom: 20px !important;
- padding: 5px;
- border-radius: 5px;
- }
- blockquote {
- background: #f9f9f9;
- border-left: 8px solid #ccc;
- font: 14px/20px italic Times, serif;
- margin: 1.5em 10px;
- padding: 0.5em 10px;
- quotes: "\201C""\201D""\2018""\2019";
- display: inline-block;
- }
- blockquote:before {
- color: #ccc;
- content: open-quote;
- font-size: 4em;
- line-height: 0.1em;
- margin-right: 0.25em;
- vertical-align: -0.4em;
- }
- blockquote p {
- display: inline;
- }
- .ck-stand-out{
- background-color: yellow;
- }
- /* line horizontal separation */
- .ck-style1 {
- height: 6px;
- background: url(../../main/img/document/hr-1.png) repeat-x 0 0;
- border: 0;
- }
- .ck-style2 {
- height: 6px;
- background: url(../../main/img/document/hr-2.png) repeat-x 0 0;
- border: 0;
- }
- .ck-style3 {
- border-top: 1px dashed #8c8b8b;
- }
- .ck-style3:after {
- content: '\002702';
- display: inline-block;
- position: relative;
- top: -12px;
- left: 40px;
- padding: 0 3px;
- background: #FFF;
- color: #8c8b8b;
- font-size: 18px;
- }
- .alert {
- padding: 15px;
- margin-bottom: 20px;
- border: 1px solid transparent;
- border-radius: 4px;
- }
- .alert h4 {
- margin-top: 0;
- color: inherit;
- }
- .alert .alert-link {
- font-weight: bold;
- }
- .alert > p,
- .alert > ul {
- margin-bottom: 0;
- }
- .alert > p + p {
- margin-top: 5px;
- }
- .alert-success {
- color: #3c763d;
- background-color: #dff0d8;
- border-color: #d6e9c6;
- }
- .alert-success hr {
- border-top-color: #c9e2b3;
- }
- .alert-success .alert-link {
- color: #2b542c;
- }
- .alert-info {
- color: #31708f;
- background-color: #d9edf7;
- border-color: #bce8f1;
- }
- .alert-info hr {
- border-top-color: #a6e1ec;
- }
- .alert-info .alert-link {
- color: #245269;
- }
- .alert-warning {
- color: #8a6d3b;
- background-color: #fcf8e3;
- border-color: #faebcc;
- }
- .alert-warning hr {
- border-top-color: #f7e1b5;
- }
- .alert-warning .alert-link {
- color: #66512c;
- }
- .alert-danger {
- color: #a94442;
- background-color: #f2dede;
- border-color: #ebccd1;
- }
- .alert-danger hr {
- border-top-color: #e4b9c0;
- }
- .alert-danger .alert-link {
- color: #843534;
- }
|