MINI-REPEATER 1.11
by velo_ninja
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
background-color: #ffffff;
}
.container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 98vw;
height: 90vh;
overflow: auto;
background-color: rgba(220, 120, 220, 0.8);
margin-top: 1%;
margin-bottom: 1%;
}
.itemDiv {
width: 90vw;
height: auto;
min-height: 8vh;
margin: auto;
margin-top: 0.5%;
padding: 10px;
border: 2px solid #ccc;
border-radius: 5px;
position: relative;
background: rgba(150, 150, 150, 0.7);
transition: background-color 0.5s, color 0.8s;
cursor: pointer;
display: flex;
align-items: center;
flex-wrap: wrap;
position: relative;
}
.itemDiv:hover {
background-color: rgba(100, 150, 250, 0.3);
}
.itemDiv:hover .idString {
color: black;
background-color: rgba(100, 150, 250, 0.9);
border: 2px solid white;
}
.itemDiv:hover .ownerString {
color: black;
background-color: rgba(100, 150, 250, 0.9);
border: 2px solid white;
}
.itemDiv:hover .thumbnail {
transform: scale(150%);
border: 3px solid lightgrey;
animation: glow 1s infinite alternate;
box-shadow: 0 0 20px rgba(20, 20, 200, 0.9);
}
.thumbnail {
width: 150px;
height: 125px;
background: white;
object-fit: cover;
border-radius: 10%;
margin-right: 10px;
padding: 3px;
transition: transform 0.5s;
}
.idString...