1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- 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(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,300italic,400italic);
- body{
- color: #666;
- font-family: 'Open Sans', sans-serif;
- padding: 20px;
- line-height: 30px;
- background: #E8F5FC;
- }
- a{
- text-decoration: none;
- color: #00829C;
- }
- a:hover{
- text-decoration: underline;
- }
- h1{
- border-radius: 5px;
- border: 1px solid #ccc;
- padding-top: 10px;
- padding-bottom: 10px;
- /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
- background: #ffffff; /* Old browsers */
- background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
- background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
- }
- img{
- border: 1px solid #ccc;
- border-radius: 5px;
- padding: 5px;
- background: #fff;
- }
|