github.com/jincm/wesharechain@v0.0.0-20210122032815-1537409ce26a/app/css/winu-ui.css (about)

     1  /*
     2   * 版权所有:中山赢友网络科技有限公司(http://www.winu.net/,http://www.appsoft.io)
     3   * 开发人员:新生帝(JsonLei)
     4   * 设计名称:APICloud通用脚本库
     5   * 软件版本:V1.0.0 Beta
     6   * 设计时间:2015年11月17号
     7   * 设计理念:只为了更懒和那份不可替代性!
     8   */
     9  
    10  html {
    11  	font-size: 100%;
    12  }
    13  body {
    14  	font-size: 1em;
    15  }
    16  html, body {
    17  	height: 100%;
    18  	width: 100%;
    19  }
    20  .winu-width-100 {
    21  	width: 100%;
    22  }
    23  .winu-white-spance-nowrap {
    24  	white-space: nowrap;
    25  }
    26  .winu-background-opacity {
    27  	background: rgba(0,0,0,0);
    28  }
    29  .winu-background-white {
    30  	background: #fff;
    31  }
    32  .winu-clear-both {
    33  	clear: both;
    34  }
    35  .winu-text-align-center {
    36  	text-align: center;
    37  }
    38  .winu-text-align-left {
    39  	text-align: left;
    40  }
    41  .winu-text-align-right {
    42  	text-align: right;
    43  }
    44  .winu-float-left {
    45  	float: left;
    46  }
    47  .winu-float-right {
    48  	float: right;
    49  }
    50  .winu-float-none {
    51  	float: none;
    52  }
    53  .winu-display-none {
    54  	display: none;
    55  }
    56  .winu-display-block {
    57  	display: block;
    58  }
    59  .winu-display-inline {
    60  	display: inline;
    61  }
    62  .winu-display-inline-block {
    63  	display: inline-block;
    64  }
    65  .winu-box-sizing-border-box {
    66  	box-sizing: border-box;
    67  	-webkit-box-sizing: border-box;
    68  }
    69  .winu-box-sizing-content-box {
    70  	box-sizing: content-box;
    71  	-webkit-box-sizing: content-box;
    72  }
    73  .winu-position-absolute {
    74  	position: absolute;
    75  }
    76  .winu-position-relative {
    77  	position: relative;
    78  }
    79  .winu-position-fixed {
    80  	position: fixed;
    81  }
    82  .winu-min-height {
    83  	min-height: 0;
    84  	height: auto;
    85  	overflow: hidden;
    86  }
    87  .winu-pre {
    88  	white-space: pre-wrap;
    89  	white-space: -moz-pre-wrap;
    90  	white-space: -pre-wrap;
    91  	white-space: -o-pre-wrap;
    92  	word-wrap: break-word;
    93  	font-size: 16px;
    94  }
    95  .winu-flex-box-vertical {
    96  	display: -webkit-box;
    97  	display: -webkit-flex;
    98  	display: flex;
    99  	-webkit-box-orient: vertical;
   100  	-webkit-flex-flow: column;
   101  	flex-flow: column;
   102  	height: 100%;
   103  }
   104  .winu-flex-box-horizontal {
   105  	display: -webkit-box;
   106  	display: -webkit-flex;
   107  	display: flex;
   108  	-webkit-box-orient: horizontal;
   109  	-webkit-flex-flow: row;
   110  	flex-flow: row;
   111  	width: 100%;
   112  }
   113  .winu-flex-item {
   114  	-webkit-box-flex: 1;
   115  	-webkit-flex: 1;
   116  	flex: 1;
   117  }
   118  .winu-maring-top-10 {
   119  	margin-top: 10px;
   120  }
   121  .winu-center-all {
   122  	display: -webkit-box;
   123  	-webkit-box-orient: horizontal;
   124  	-webkit-box-pack: center;
   125  	-webkit-box-align: center;
   126  	display: box;
   127  	box-orient: horizontal;
   128  	box-pack: center;
   129  	box-align: center;
   130  }
   131  .winu-center-vertical {
   132  	display: -webkit-box;
   133  	-webkit-box-orient: horizontal;
   134  	-webkit-box-align: center;
   135  	display: box;
   136  	box-orient: horizontal;
   137  	box-align: center;
   138  }
   139  .winu-center-horizontal {
   140  	display: -webkit-box;
   141  	-webkit-box-orient: horizontal;
   142  	-webkit-box-pack: center;
   143  	display: box;
   144  	box-orient: horizontal;
   145  	box-pack: center;
   146  }
   147  .winu-center-horizontal-end {
   148  	display: -webkit-box;
   149  	-webkit-box-orient: horizontal;
   150  	-webkit-box-pack: end;
   151  	display: box;
   152  	box-orient: horizontal;
   153  	box-pack: end;
   154  }
   155  .winu-center-horizontal-start {
   156  	display: -webkit-box;
   157  	-webkit-box-orient: horizontal;
   158  	-webkit-box-pack: start;
   159  	display: box;
   160  	box-orient: horizontal;
   161  	box-pack: start;
   162  }
   163  .winu-border-radius-50 {
   164  	border-radius: 50%;
   165  	-webkit-border-radius: 50%;
   166  }
   167  .winu-transition-all {
   168  	transition: All 1.5s ease;
   169  	-webkit-transition: All 1.5s ease;
   170  }