123456789101112131415161718192021222324 |
- #start{
- #home{
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- .title{
- p{
- top: 58%;
- }
- }
- }
- & > div:nth-child(n+3){
- display: block!important;
- & > div{
- width: 100%!important;
- &:first-child{
- height: 40%;
- }
- &:last-child{
- height: 60%;
- }
- }
- }
- }
|