123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- @mixin messages(){
- padding: 9px;
- margin: 0.5em 0 0;
- color: #3a87ad;
- background: #d9edf7;
- border: 1px solid #bce8f1;
- -moz-border-radius: 5px;
- -webkit-border-radius: 5px;
- border-radius: 5px;
- @include fs12;
- &.warning {
- color: #c09853;
- background-color: #fcf8e3;
- border-color: #fbeed5;
- }
- &.error {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #eed3d7;
- }
- &.status {
- color: #468847;
- background-color: #dff0d8;
- border-color:#d6e9c6;
- @include fs14;
- }
- }
- div.messages { @include messages();}
- .messages-label{display:none;}
- #better-messages-wrapper{
- background-color: rgba(255,255,255,0.7); padding :10px; @include rounded(5px); @include drop-shadow(0, 0, 6px, 0.4);
- #better-messages-default{
- div.messages{
- @include messages(); margin:0 0 10px 0;
- }
- .footer{
- border:none; padding:0; margin:0;
- a.message-close{
- background: #fff url('../img/close.png') no-repeat center center;
- width:15px; height:15px; @include rounded(3px); display:block;
- }
- }
- }
- }
- @mixin icon($w, $x, $y, $color : #fff){
- background-image: url('../img/sprite.png');
- width:$w; height:$w; line-height:$w;
- background-position: $x $y ;
- background-color: $color;
- }
- figure{
- figcaption{
- display:none;
- }
- .blank{ position:absolute; top:0; left:0; width:100%; height:100%;}
- }
- a:focus {
- outline: 0;
- }
- a:active,
- a:hover {
- outline: 0;
- }
- #colorbox{
- @include rounded; @include drop-shadow(0, 0, 5px, 0.4);
- #cboxLoadedContent{ background-color: #fff; }
- }
- .embedded-video{
- .player iframe{
- @media #{$medium-only}{
- max-width:100%;
- height:auto;
- }
- }
- }
- .not-logged-in{
- #tasks ul.tabs.primary{display:none;}
- }
- #admin-menu{
- top:0;
- }
|