Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/webroot/css/ |
Upload File : |
// =================================================== // Css style for Humans Rights. // @author 3Musketeers (3Musketeersteam@gmail.com) // @create date 18 September 2013 // =================================================== // @import 'normalize'; @import 'admin'; //use this if you want to create gradien bankground //If use this mixin for button you can use `$bSkipHover: true` this will create hover color. @mixin gradientBg($startColor, $endColor, $bSkipHover:false) { background-image: -ms-linear-gradient(top, $startColor 0%, $endColor 100%);/* IE10 Consumer Preview */ background-image: -moz-linear-gradient(top, $startColor 0%, $endColor 100%); /* Mozilla Firefox */ background-image: -o-linear-gradient(top, $startColor 0%, $endColor 100%);/* Opera */ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, $startColor), color-stop(1, $endColor));/* Webkit (Safari/Chrome 10) */ background-image: -webkit-linear-gradient(top, $startColor 0%, $endColor 100%);/* Webkit (Chrome 11+) */ background-image: linear-gradient(to bottom, $startColor 0%, $endColor 100%);/* W3C Markup, IE10 Release Preview */ //Use if you want to saperate color when hover button @if $bSkipHover { &:hover { background-image: -ms-linear-gradient(top, $endColor 0%, $startColor 100%);/* IE10 Consumer Preview */ background-image: -moz-linear-gradient(top, $endColor 0%, $startColor 100%); /* Mozilla Firefox */ background-image: -o-linear-gradient(top, $endColor 0%, $startColor 100%);/* Opera */ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, $endColor), color-stop(1, $startColor));/* Webkit (Safari/Chrome 10) */ background-image: -webkit-linear-gradient(top, $endColor 0%, $startColor 100%);/* Webkit (Chrome 11+) */ background-image: linear-gradient(to bottom, $endColor 0%, $startColor 100%);/* W3C Markup, IE10 Release Preview */ } } } // Control all box inreal size when you use padding. * { -moz-box-sizing: border-box; box-sizing: border-box; } // =================================================== // Helper classes // =================================================== // =================================================== // Element // =================================================== body { padding: 0; background: #F7F7F7; font-family: 'Arial', sans-serif; color: #444; &.login { background: url(../img/body-bg.png); } &.front { background-color: #ddd; } } a { text-decoration: none; } h1 { font-size: 1.8em; margin: 0; } h2 { font-size: 1.3em; margin: 0; } h3 { font-size: 1.2em; margin: 0; } .shadow { -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.75); -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.75); box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.75); } //Footer footer.footer { padding: 10px 5px; border-top: 5px solid #0778BE; font-size: 0.8em; color: #666; background: #fff; ul.footer-nav { list-style: none; li { display: inline-block; margin: 10px 0; padding: 0 10px; border-right: 1px solid #ccc; &:last-child { border-right: none; } a { font-size: 1.2em; } } } .sub-footer { margin-top: 10px; padding: 20px 0 10px; border-top: 1px solid #cdcdcd; background: #fafafa; font-size: 1em; } } // colors $baseCopy: #333; // elements @import 'header'; @import 'navigation'; @import 'filters'; @import 'frontend';