/* Reconstruction */
/*@mixin border($position){
@if $position == left-right or $position == right-left{
border-left: 1px solid $border-color;
border-right: 1px solid $border-color;
}
@else if $position == left-right-bottom or $position == right-left-bottom or $position == bottom-left-right or $position == bottom-right-left{
border: 1px solid $border-color;
border-top: 0;
}@else if $position == left or $position == right or $position == top or $position == bottom {
border-#{$position}:1px solid $border-color;
}
@else{
border: 1px solid $border-color;
}
}*/
相关文章
- 03-01CodeForces-329C(div1):Graph Reconstruction(随机&构造)
- 03-012013亚洲区域赛长沙站 ZOJ 3732 Graph Reconstruction
- 03-01zoj3732&& hdu4797 Graph Reconstruction
- 03-01Codeforces Round #509 (Div. 2) E. Tree Reconstruction (构造,思维)
- 03-01leetcode_queue-reconstruction-by-height
- 03-01C. Binary String Reconstruction
- 03-014.SceneCode: Monocular Dense Semantic Reconstruction using Learned Encoded Scene Representations.
- 03-01Reconstruction
- 03-01故障检测指标的贡献分析(Reconstruction Based Contribution,RBC)新方法
- 03-01POJ3184 Ikki's Story I - Road Reconstruction(最大流)