Created
April 14, 2024 12:53
-
-
Save devshades-au/a7a98ec8f07d33c6c50e9dfd531dffdc to your computer and use it in GitHub Desktop.
My TV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="wall"> | |
<center> | |
<div class="led"> | |
<div class="tv"></div> | |
</div> | |
<div class="displayUnit"> | |
<div class="drawer-l"> | |
<div class="drawer"></div> | |
<div class="drawer"></div> | |
</div> | |
<div class="shelf"></div> | |
<div class="drawer-r"> | |
<div class="drawer"></div> | |
<div class="drawer"></div> | |
</div> | |
</div> | |
</center> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
padding: 10px; | |
margin: 10px; | |
background-color: #E0E0E0; | |
} | |
.wall { | |
background-color: #E0E0E0; | |
height: 100%; | |
width: 100%; | |
padding: 10px; | |
} | |
.led { | |
background: linear-gradient(185deg, red, green, blue); | |
height: 300px; | |
width: 600px; | |
padding: 10px; | |
animation: colorChange 10s infinite, glow 10s infinite; | |
box-shadow: 0 0 8px rgba(255,255,255,0.8); | |
border: none; | |
opacity: 0.7; | |
} | |
.tv { | |
height: 100%; | |
width: 100%; | |
background-size: 100% auto; | |
animation: bgChange 10s infinite; | |
opacity: 100%; | |
} | |
.displayUnit { | |
width: 750px; | |
height: 125px; | |
border: 2px solid black; | |
margin: 10px; | |
position: relative; | |
margin-top: 50px; | |
display: flex; | |
align-items: center; | |
justify-content: space-between; | |
padding: 5px; | |
background-color: #BCAAA4; | |
} | |
.drawer-l, .drawer-r { | |
width: 100%; | |
height: 100%; | |
border: 1px solid black; | |
display: flex; | |
flex-direction: column; | |
justify-content: space-between; | |
} | |
.shelf { | |
border: 1px solid black; | |
height: 100%; | |
width: 80%; | |
margin: 5px; | |
background-color: #8D6E63; | |
} | |
.drawer { | |
border: 1px solid black; | |
height: 50%; | |
width: 100%; | |
} | |
@keyframes colorChange { | |
0% { background: linear-gradient(185deg, red, green, blue); } | |
33% { background: linear-gradient(185deg, blue, green, red); } | |
67% { background: linear-gradient(185deg, green, blue, red); } | |
100% { background: linear-gradient(185deg, purple, orange, pink); } | |
} | |
@keyframes glow { | |
0% { box-shadow: 0 0 150px red; } | |
33% { box-shadow: 0 0 150px blue; } | |
67% { box-shadow: 0 0 150px green; } | |
100% { box-shadow: 0 0 150px purple; } | |
} | |
@keyframes bgChange { | |
0% { background-image: url('https://images.unsplash.com/photo-1572099606223-6e29045d7de3?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MTMwOTg3MzR8&ixlib=rb-4.0.3&q=85'); } | |
33% { background-image: url('https://images.unsplash.com/photo-1552083375-1447ce886485?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MTMwOTg3MzR8&ixlib=rb-4.0.3&q=85'); } | |
67% { background-image: url('https://images.unsplash.com/photo-1446034295857-c39f8844fad4?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MTMwOTg3MzR8&ixlib=rb-4.0.3&q=85'); } | |
100% { background-image: url('https://images.unsplash.com/photo-1533119408463-b0f487583ff6?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3MTMwOTg5ODd8&ixlib=rb-4.0.3&q=85'); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment