Files
comp126/practices/24-10-29/css/index.css
2024-11-11 23:03:20 -05:00

36 lines
382 B
CSS

@import 'shared.css';
html,
body {
height: 100%;
width: 100%;
}
body {
position: relative;
}
div {
height: 128px;
width: 128px;
background-color: red;
position: absolute;
top: calc(50% - 64px);
left: calc(50% - 64px);
&:hover,
&:focus {
animation: move 10s ease-in-out both;
}
}
@keyframes move {
0% {
}
100% {
top: 0;
left: 0;
}
}