123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- .house-wrap {
- position: relative;
- width: 600px;
- height: 600px;
- transform: scale(0.5);
- .house {
- position: absolute;
- position: relative;
- top: 50%;
- left: 50%;
- display: flex;
- width: 400px;
- height: 300px;
- transform: translateX(-50%) translateY(-13%);
- justify-content: center;
- perspective: 200px;
- }
- .floor {
- position: absolute;
- bottom: 0;
- display: flex;
- width: 95%;
- height: 30px;
- background-color: #e1f6fd;
- border: 4px solid #314b70;
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- box-shadow: inset 4px 4px 0 #fffdff;
- justify-content: center;
- }
- .floor::before,
- .floor::after {
- position: absolute;
- bottom: 0;
- width: 32%;
- height: 60%;
- background-image: linear-gradient(to bottom, #e0f5fc 50%, #aac4d0 50%);
- border-top: 4px solid #314b70;
- border-right: 4px solid #314b70;
- border-left: 4px solid #314b70;
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- content: '';
- box-shadow: 4px 0 0 #aac4d0;
- }
- .floor::after {
- top: 0;
- width: 25%;
- height: 40%;
- border-top: none;
- border-top-right-radius: 0;
- border-top-left-radius: 0;
- }
- .wall {
- position: absolute;
- bottom: 30px;
- display: flex;
- width: 91%;
- height: 175px;
- overflow: hidden;
- background: #c3e0e7;
- border-right: 4px solid #314b70;
- border-left: 4px solid #314b70;
- justify-content: space-between;
- align-items: flex-end;
- }
- .window {
- position: relative;
- width: 34%;
- height: 125px;
- background: #aac4d0;
- border-top: 4px solid #314b70;
- border-right: 4px solid #314b70;
- border-bottom: none;
- border-left: none;
- border-top-right-radius: 8px;
- box-shadow: inset 0 4px 2px #e0f5fc;
- }
- .window::before {
- position: absolute;
- top: 6%;
- left: 0;
- width: 94%;
- height: 88%;
- background-image: linear-gradient(to top, #f3f6fa 47%, #9ab2d3 47%, #9ab2d3 50%, #f3f6fa 50%);
- border-top: 4px solid #314b70;
- border-right: 4px solid #314b70;
- border-bottom: 4px solid #314b70;
- border-left: none;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- content: '';
- }
- .window::after {
- position: absolute;
- top: 19%;
- left: 20%;
- width: 30px;
- height: 40px;
- background-color: #f9aabe;
- border: 4px solid #9ab2d3;
- content: '';
- }
- .window:nth-of-type(3) {
- border-top: none;
- border-right: 4px solid #314b70;
- border-bottom: 4px solid #314b70;
- border-left: none;
- border-top-right-radius: 0;
- border-bottom-right-radius: 8px;
- transform: rotateZ(180deg);
- box-shadow: inset 0 -4px 2px #e0f5fc;
- }
- .window:nth-of-type(3)::after {
- content: none;
- }
- .door {
- display: flex;
- width: 20%;
- height: 130px;
- padding-left: 8px;
- background-color: #ffc26b;
- border: 4px solid #314b70;
- border-bottom: none;
- border-top-right-radius: 10px;
- border-top-left-radius: 10px;
- box-shadow: inset 3px 3px #ffe0ad, inset -10px -8px #ffad61, 4px 0 #aac4d0;
- flex-direction: column;
- justify-content: space-evenly;
- align-items: flex-start;
- }
- .door__square {
- width: 85%;
- height: 47px;
- border: 4px solid #314b70;
- border-radius: 4px;
- box-shadow: inset 3px 3px #ffe0ad;
- }
- .door__line {
- width: 25%;
- height: 4px;
- background: #314b70;
- border-radius: 4px;
- }
- .top {
- position: absolute;
- width: 82%;
- height: 30px;
- background-color: #aac4d0;
- border: 4px solid #314b70;
- border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- box-shadow: inset 4px 4px 0 #e1f6fd;
- }
- .circle {
- position: absolute;
- top: -10%;
- display: flex;
- width: 115px;
- height: 115px;
- background-color: #e0f5fc;
- border: 4px solid #314b70;
- border-radius: 50%;
- content: '';
- box-shadow: inset 4px 4px 0 #fffdff, inset 4px -4px 0 #fffdff, inset -4px 4px 0 #fffdff,
- inset -4px -4px 0 #fffdff;
- justify-content: center;
- align-items: center;
- }
- .circle::before,
- .circle::after {
- position: absolute;
- top: 35%;
- width: 70%;
- height: 4px;
- background-color: #314b70;
- content: '';
- }
- .circle::after {
- top: 20%;
- width: 35%;
- }
- .plastic {
- position: absolute;
- top: 30%;
- z-index: 100;
- width: 100%;
- height: 30px;
- overflow: hidden;
- }
- .plastic__g {
- display: flex;
- justify-content: center;
- width: 100%;
- overflow: hidden;
- transform: translateY(-22px);
- }
- .plastic__item {
- width: 43px;
- height: 43px;
- margin-bottom: 4px;
- border: 3px solid #314b70;
- border-radius: 50%;
- box-shadow: 0 4px 0 #aac4d0;
- }
- .plastic__item:nth-child(odd) {
- background: #0792d9;
- box-shadow: 0 4px 0 #aac4d0, inset 4px 4px 0 #66c8fa;
- }
- .plastic__item:nth-child(even) {
- background: #fffdff;
- }
- .plastic__item:nth-of-type(1),
- .plastic__item:nth-last-of-type(1) {
- width: 45px;
- height: 45px;
- box-shadow: none;
- box-shadow: inset 4px 4px 0 #66c8fa;
- }
- .plastic__item:nth-of-type(5) {
- width: 45px;
- height: 45px;
- }
- .line {
- position: absolute;
- top: 15px;
- display: flex;
- width: 90%;
- height: 85px;
- background-color: #e1f6fd;
- border-right: 4px solid #314b70;
- border-bottom: 4px solid #314b70;
- border-left: 4px solid #314b70;
- border-radius: 4px;
- transform: rotateX(25deg);
- transform-style: preserve-3d;
- }
- .line__item {
- height: 100%;
- flex-grow: 1;
- border-right: 4px solid #314b70;
- }
- .line__item:nth-child(odd) {
- background: #00affa;
- box-shadow: inset 4px 4px 0 #66c8fa;
- }
- .line__item:nth-child(even) {
- background: #fffdff;
- }
- .line__item:nth-last-of-type(1) {
- border-right: none;
- }
- .line__item:nth-child(4),
- .line__item:nth-child(5),
- .line__item:nth-child(6) {
- border-top: 6px solid #314b70;
- }
- .tree {
- position: absolute;
- bottom: 19%;
- left: 10%;
- display: flex;
- width: 100px;
- height: 165px;
- background-color: #00d398;
- border: 4px solid #314b70;
- border-radius: 50px;
- box-shadow: inset 4px 0 0 #77e4c6, inset -4px 0 0 #00a073;
- animation: tree 1s linear alternate infinite;
- justify-content: center;
- transform-origin: 0% 100%;
- }
- .tree__item {
- position: absolute;
- bottom: -80px;
- width: 4px;
- height: 140px;
- background: #314b70;
- }
- .tree__item:nth-of-type(2) {
- bottom: 80px;
- height: 40px;
- border-radius: 20px;
- box-shadow: 0 0 0 8px #77e4c6;
- }
- .tree__item:nth-of-type(2)::before {
- position: absolute;
- bottom: -45px;
- left: -30px;
- width: 20px;
- height: 35px;
- background-color: #77e4c6;
- border-radius: 15px;
- content: '';
- }
- .tree__item:nth-of-type(3) {
- bottom: 20px;
- left: 36%;
- width: 4px;
- height: 30px;
- background-color: #314b70;
- transform: rotateZ(-45deg);
- }
- .dot {
- position: absolute;
- bottom: 38px;
- width: 100%;
- height: 4px;
- background-image: linear-gradient(
- to right,
- #314b70 10%,
- transparent 10%,
- transparent 11%,
- #314b70 11%,
- #314b70 85%,
- transparent 85%,
- transparent 86%,
- #314b70 86%
- );
- }
- .bush__item {
- position: absolute;
- bottom: 40px;
- left: 18%;
- width: 80px;
- height: 60px;
- background-color: #00d398;
- border: 1px solid red;
- border: 4px solid #314b70;
- border-bottom: none;
- border-top-right-radius: 100px;
- border-top-left-radius: 50px;
- box-shadow: inset 4px 0 0 #77e4c6, inset -4px 0 0 #00a073;
- animation: bush 2s alternate infinite;
- transform-origin: bottom center;
- }
- .bush__item:nth-of-type(2) {
- left: 13%;
- width: 50px;
- height: 40px;
- border-top-right-radius: 10px;
- border-top-left-radius: 50px;
- animation: tree 2s alternate reverse infinite 0.5s;
- }
- .bush__item::before {
- position: absolute;
- top: 10px;
- left: 10px;
- width: 20px;
- height: 20px;
- background: #77e4c6;
- border-radius: 50%;
- content: '';
- }
- .cloud {
- position: absolute;
- top: 200px;
- left: 60px;
- display: flex;
- justify-content: center;
- width: 85px;
- height: 20px;
- border-bottom: 4px solid #e1e8f2;
- animation: cloud 4s infinite alternate;
- }
- .cloud:nth-of-type(2) {
- top: 150px;
- left: 50%;
- animation: cloud 4s infinite reverse alternate 0.5s;
- }
- .cloud:nth-of-type(3) {
- top: 250px;
- left: 80%;
- animation: cloud 4s ease infinite alternate 0.75s;
- }
- .cloud__item {
- position: relative;
- border-top: 20px solid #e1e8f2;
- border-right: 20px solid transparent;
- border-bottom: 20px solid transparent;
- border-left: 20px solid #e1e8f2;
- border-radius: 50%;
- transform: rotateZ(45deg);
- }
- .cloud__item:nth-of-type(2) {
- margin-top: 5px;
- margin-left: -7px;
- border-top: 15px solid #e1e8f2;
- border-right: 15px solid transparent;
- border-bottom: 15px solid transparent;
- border-left: 15px solid #e1e8f2;
- }
- .bird {
- position: absolute;
- right: 10%;
- bottom: 40%;
- z-index: -1;
- width: 20px;
- height: 20px;
- border-top: 4px solid #becde2;
- border-left: 4px solid #becde2;
- transform: rotateZ(-135deg);
- animation: bird 1s ease alternate infinite;
- }
- .bird:nth-of-type(2) {
- right: 20%;
- bottom: 30%;
- width: 15px;
- height: 15px;
- }
- @keyframes bird {
- 0% {
- transform: scaleY(0.7) rotateZ(-135deg) translateX(0) translateY(0) skew(-10deg, -10deg);
- }
- 100% {
- transform: scaleY(1) rotateZ(-135deg) translateX(50%) translateY(50%) skew(-10deg, -10deg);
- }
- }
- @keyframes tree {
- 0% {
- transform: scaleY(1);
- }
- 100% {
- transform: scaleY(0.975);
- }
- }
- @keyframes bush {
- 0% {
- transform: skewX(-2deg);
- }
- 100% {
- transform: skewX(5deg);
- }
- }
- @keyframes cloud {
- 0% {
- transform: translateX(-10%);
- }
- 100% {
- transform: translateX(20%);
- }
- }
- }
|