1234567891011121314151617181920212223242526272829303132333435363738 |
- body {
- color: #333;
- font-size: 14px;
- background: #f0f0f0;
- }
- #root {
- width: 100%;
- height: 100%;
- min-width: 960px;
- .wrap {
- height: 100%;
- }
- }
- .header {
- position: absolute;
- top: 0;
- left: 0;
- height: 100px;
- width: 100%;
- background: #fff;
- box-shadow: 0 2px 6px 0px #ccc;
- }
- .clearfix:before,
- .clearfix:after {
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- overflow: hidden;
- }
- .footer {
- border-top: 1px solid #d8d8d8;
- }
|