kwadraty 1css
Data utworzenia: 2025-01-07 07:54:04
* {
box-sizing: 0;
padding: 0;
margin: 0;
}
body {
font-family:Georgia, 'Times New Roman', Times, serif;
background-color: #333;
}
.square {
position: absolute;
top: 150px;
width: 200px;
height: 200px;
transform: translate(-50%,-50%);
border-radius: 15px;
transition: 1s;
}
.transparent {
left: 50%;
border-color: white;
border: 2px solid white;
width: 205px;
background-color: none;
height: 205px;
}
.green {
background-color: rgb(76, 255, 76);
left: 50%;
border: 2px solid green;
box-shadow: 0 0 rgb(76, 255, 76);
}
/* .btn-shape:hover ~ .square {
border-radius: 50%;
} */
Powrót