diff options
author | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-25 10:38:44 +0200 |
---|---|---|
committer | Dennis Eriksen <dennis.se@gmail.com> | 2013-04-25 10:38:44 +0200 |
commit | a76caf778561543ef28ea8c851f611052c933cf7 (patch) | |
tree | 2419006d4ffa10fe1a38664cd1481739da339c6d /public/css/use.less | |
parent | Removing margin-left (diff) | |
download | Divid-a76caf778561543ef28ea8c851f611052c933cf7.tar.gz |
cut out part of the css
Diffstat (limited to 'public/css/use.less')
-rw-r--r-- | public/css/use.less | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/public/css/use.less b/public/css/use.less new file mode 100644 index 0000000..0ece7fa --- /dev/null +++ b/public/css/use.less @@ -0,0 +1,50 @@ + +#vertical(@startColor: #555, @endColor: #333) { + background-color: mix(@startColor, @endColor, 60%); + background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+ + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+ + background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+ + background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10 + background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10 + background-repeat: repeat-x; + filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down +} + +.infobox { + text-align:center; + /*color:white;*/ + background-color: @grayLighter; + margin:15px; + padding:35px; + height: 220px; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.registrer { +margin-left: 20px; +background-color: #FF9A00; +} + +.infobtn { +} + +.showcase { + width:1200px; + height:400px; + margin-top: 20px; + margin-bottom:20px; + padding:10px; + background-color: @grayLighter; + /*background-image: url('/img/people.png'); + background-repeat:no-repeat; + background-attachment:fixed; + background-position:center;*/ + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.logo { +float: left; |