Legends_Player
"in the PC... Okay programing in C? idk"
Venezuela
Last active:
Mood: Happy
View my: Blog | Forum Topics
Contacting Legends_Player
SpaceHey URL:
https://spacehey.com/legends_player
Legends_Player 's Interests
|
General |
My interest:
|
|
Music |
I like;
|
|
Movies |
|
|
Television |
|
|
Books |
|
|
Heroes |
|
Legends_Player 's Latest Blog Entries [View Blog]
There are no Blog Entries yet.
Legends_Player 's Blurbs
About me:
👇👇 CODE FOR ONLY ROUND PROFILE !!!!!!
I'm Legendsplayer.
I am a sociable person, I like making friends and chatting on the internet.
Who I'd like to meet:
I like to talk about:
- Programming (although I am a beginner)
- Video games or simply, games.
- About my life/day.
Legends_Player 's Friend Space
[view all]Legends_Player has 4 friends.
Legends_Player 's Friends Comments
Displaying 0 of 0 comments ( View all | Add Comment )
/* Estilo para el board de amigos */
.friends {
background-color: #1a1a1a;
border: 2px solid #ffcc00;
border-radius: 10px;
padding: 15px; /* espacio interno mejorado */
margin-bottom: 15px;
box-shadow: 0 0 10px #ffcc00;
animation: hoverGlow 6s ease-in-out infinite;
display: flex;
flex-wrap: wrap;
gap: 10px; /* espacio entre los elementos amigos */
}
/* Título del panel amigos */
.friends .heading {
background-color: #ffcc00;
color: #1a1a1a;
font-weight: bold;
text-align: center;
padding: 8px;
border-radius: 5px;
width: 100%;
}
/* Cada amigo individual */
.friends .person {
background-color: #333;
border: 1px solid #ffcc00;
border-radius: 8px;
padding: 8px;
text-align: center;
width: calc(25% - 10px); /* para que quepan 4 por fila con espacio */
box-sizing: border-box;
transition: transform 0.3s ease;
}
/* Íconos e imágenes de amigos */
.friends .person img {
max-width: 100%;
border-radius: 5px;
margin-bottom: 5px;
}
/* Hover individual */
.friends .person:hover {
transform: scale(1.05);
background-color: #ffcc00;
color: #1a1a1a;
}