码迷,mamicode.com
首页 > 其他好文 > 详细

less2

时间:2016-04-05 19:27:44      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

less2

@base-color: #000;
@fore-color: darken(@base-color, 50%);
@back-color: lighten(@base-color, 50%);

.bordered(@width:1px,@type:solid,@color:@back-color) {
  border: @arguments;
}

.rounded(@radius:5px) {
  -webkit-border-radius: @radius;
  -moz-border-radius: @radius;
  border-radius: @radius;
}

.shadowed(@x:5px,@y:5px,@color:@back-color) {
  box-shadow: @arguments;
  margin-bottom: 5px;
}

.focus {
  color: @fore-color;
  .shadowed();
}

header, footer, article, aside, hgroup, section, nav, div {
  .bordered();
  .rounded();
  padding: 1px;
}

 

less2

标签:

原文地址:http://www.cnblogs.com/gyz418/p/5356170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!