frames.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. Theme Name: Frame Scorm
  3. URI Project: http://www.chamilo.org
  4. Description: Styles main base of Chamilo LMS appearance, works with Bootstrap 3.0.x
  5. Author:
  6. alex.aragon@beeznest.com
  7. Version: 1.0
  8. */
  9. @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,300italic,400italic);
  10. body{
  11. color: #666;
  12. font-family: 'Open Sans', sans-serif;
  13. padding: 20px;
  14. line-height: 30px;
  15. background: #E8F5FC;
  16. }
  17. a{
  18. text-decoration: none;
  19. color: #00829C;
  20. }
  21. a:hover{
  22. text-decoration: underline;
  23. }
  24. h1{
  25. border-radius: 5px;
  26. border: 1px solid #ccc;
  27. padding-top: 10px;
  28. padding-bottom: 10px;
  29. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
  30. background: #ffffff; /* Old browsers */
  31. background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
  32. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
  33. background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
  34. background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
  35. background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
  36. background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
  37. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
  38. }
  39. img{
  40. border: 1px solid #ccc;
  41. border-radius: 5px;
  42. padding: 5px;
  43. background: #fff;
  44. }