Minor - Adding some styles (document title is wider)

skala
Julio Montoya 15 years ago
parent 633f587e26
commit bf6ac0b725
  1. 46
      main/css/base.css
  2. 13
      main/css/base_chamilo.css

@ -672,6 +672,31 @@ button:hover {
}
/* gray */
.gray {
color: #e9e9e9;
border: solid 1px #555;
background: #6e6e6e;
background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
background: -moz-linear-gradient(top, #888, #575757);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
background: #616161;
background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
background: -moz-linear-gradient(top, #757575, #4b4b4b);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
color: #afafaf;
background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
background: -moz-linear-gradient(top, #575757, #888);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}
/* orange */
.orange {
color: #fef4e9 !important;
@ -695,6 +720,27 @@ button:hover {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
/* green */
.green {
color: #e8f0de;
border: solid 1px #538312;
background: #64991e;
background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.green:hover {
background: #538018;
background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
background: -moz-linear-gradient(top, #6b9d28, #436b0c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}
.green:active {
color: #a9c08c;
background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
background: -moz-linear-gradient(top, #4e7d0e, #7db72f);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
}

@ -1709,12 +1709,10 @@ padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0p
display: none;
}
/*
------------------------------------------------------------------------------
OTHERS
------------------------------------------------------------------------------
Document title
*/
.input_titles {
width: 300px;
width: 400px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
@ -1722,9 +1720,7 @@ padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0p
border:1px solid #E1E1E0;
}
/*
------------------------------------------------------------------------------
Survey
------------------------------------------------------------------------------
*/
#survey_title {
background-color:#dcdcdc;
@ -1760,10 +1756,7 @@ padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0p
padding:5px;/*border: 1px solid #264269;*/
}
/*
|----------------------------------------------------------------------------
| Added: to fit img and blocks in home page
|----------------------------------------------------------------------------
|
Added: to fit img and blocks in home page
*/
#hellomindfactory {
border: 1px solid #ccc;

Loading…
Cancel
Save