| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /**
- * 边框相关快捷样式类
- * @since 1.0.0
- * @version 1.0.0
- */
- .bd {
- border-width: 0.5px;
- border-style: solid;
- }
- .bd-t {
- position: relative;
- &::after {
- content: ' ';
- position: absolute;
- width: 100%;
- height: 1.5px;
- left: 0;
- right: 0;
- top: 0;
- transform: scaleY(0.5);
- background-color: #eee;
- }
- }
- // 小程序无法呈现1px像素
- .bd-b {
- position: relative;
- //border-bottom-width: 0.5px;
- //border-bottom-style: solid;
- &::after {
- content: ' ';
- position: absolute;
- width: 100%;
- height: 1.5px;
- left: 0;
- right: 0;
- bottom: 0;
- transform: scaleY(0.5);
- background-color: #eee;
- }
- }
- .bd-b-1 {
- position: relative;
- &::after {
- content: '';
- position: absolute;
- width: 100%;
- // height: 1px;
- left: 0;
- right: 0;
- bottom: 0;
- transform: scaleY(0.3);
- -webkit-transform: scaleY(0.3);
- background-color: #e0e0e0;
- border-bottom: 1px solid rgb(235, 237, 240);
- }
- }
- .bd-l {
- position: relative;
- &::after {
- content: '';
- position: absolute;
- width: 1px;
- height: 100%;
- left: 0;
- top: 0;
- bottom: 0;
- transform: scaleX(0.5);
- background-color: #e0e0e0;
- }
- }
- .bd-r {
- position: relative;
- &::after {
- content: '';
- position: absolute;
- width: 1px;
- height: 100%;
- right: 0;
- top: 0;
- bottom: 0;
- transform: scaleX(0.5);
- background-color: #e0e0e0;
- }
- }
- /* ==========================================================================
- 圆角弧度相关
- ========================================================================== */
- $ui-border-radius: namespace('bdr');
- $ui-bdr-map: (
- '0': 0,
- '4': 4px,
- '8': 8px,
- '10': 10px,
- '20': 20px,
- '30': 30px,
- );
- @each $key, $value in $ui-bdr-map {
- .#{$ui-border-radius + $key} {
- overflow: hidden;
- border-radius: $value;
- }
- }
|