Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/main/css/base.css

95 lines
1.9 KiB

/**
* Common CSS for all themes
*/
* {
outline :none;
}
15 years ago
input {
-moz-border-radius:5px;
-webkit-border-radius:5px;
15 years ago
border-radius:5px;
-x-system-font:none;
border:1px solid #CCCCCC;
color:#666666;
font-family:Arial,Helvetica,sans-serif;
15 years ago
font-size:120%;
line-height:normal;
padding:5px;
}
select, textarea {
15 years ago
border:1px solid #CCCCCC;
padding:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
color:#666666;
}
15 years ago
select, input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
cursor: pointer;
font-size: 12px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
15 years ago
-border-radius:5px;
border:1px solid #E1E1E0;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
border: 1px solid #849FB3;
box-shadow: 0 0 5px #C9D2D9;
background-image:none;
background-color:white;
-moz-border-radius:5px;
-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
15 years ago
}
15 years ago
/* Fixes the FB input*/
input.maininput:focus {
box-shadow:0 0 0px #fff;
border:none;
}
/* Big icons course home page styles */
.big_icon {
width:205px;
padding:10px;
}
.big_icon img {
margin:0 auto 0 auto;
}
.courseadminview .big_icon a {
font-size:12px;
}
/* Fixes the administration block section */
.admin_section div {
margin: 5px 0 14px 5px;
margin-left: 39px;
}
.rounded_div {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #E5E5E5;
-webkit-border-radius: 11px 11px 11px 11px;
-opera-border-radius: 11px 11px 11px 11px;
-moz-border-radius: 11px 11px 11px 11px;
border-radius: 11px 11px 11px 11px;
-webkit-box-shadow: 0 4px 18px #C8C8C8;
-opera-box-shadow: 0 4px 18px #C8C8C8;
-moz-box-shadow: 0 4px 18px #C8C8C8;
box-shadow: 0 4px 18px #C8C8C8;
float: left;
height: auto;
margin: 10px 8px 15px 15px;
padding: 16px 12px 5px;
}