Aga
"studying"
13 Greece lovergirl
Last active:
Mood: hungry
View my: Blog | Forum Topics
Contacting Aga
SpaceHey URL:
https://spacehey.com/profile?id=4317372
Aga's Interests
|
General |
|
|
Music |
|
|
Movies |
|
|
Television |
|
|
Books |
|
|
Heroes |
|
Aga's Latest Blog Entries [View Blog]
There are no Blog Entries yet.
Aga's Blurbs
About me:
Who I'd like to meet:
Aga's Friend Space
[view all]Aga has 7 friends.
Aga's Friends Comments
Displaying 0 of 0 comments ( View all | Add Comment )
style>
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.vinyl-container {
position: relative;
width: 300px;
height: 300px;
margin: 50px auto;
}
.vinyl {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #111;
border: 10px solid #444;
position: absolute;
animation: rotate 5s infinite linear;
}
.center-hole {
width: 40px;
height: 40px;
background-color: #111;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.cover-container {
width: 80%;
height: 80%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
border-radius: 50%;
}
.cover {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
animation: rotate 5s infinite linear;
}
.cover img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}
.cover-hole {
width: 20px;
height: 2>