Skip to content

Commit

Permalink
im add 1peper to my project
Browse files Browse the repository at this point in the history
  • Loading branch information
MritAsid committed Jun 17, 2024
1 parent 24a23c3 commit ec8cef7
Show file tree
Hide file tree
Showing 2 changed files with 534 additions and 0 deletions.
65 changes: 65 additions & 0 deletions css/friends.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
.friends-page {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.friends-page .contact {
position: absolute;
right: 10px;
top: 10px;
}
.friends-page .contact i {
background-color: #eee;
padding: 10px;
border-radius: 50%;
color: #666;
font-size: 13px;
cursor: pointer;
transition: 0.3s;
}
.friends-page .friend .icons {
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
margin-top: 15px;
margin-bottom: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.friends-page .friend .icons i {
margin-left: 5px;
}
.friends-page .friend .icons .vip {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 40px;
opacity: 0.2;
}


.friends-page .friend .info {
flex-direction: column;
}

.friends-page .friend .info div {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 10px;
border-top: 1px solid #eee;
padding-top: 10px;
}




@media (max-width: 767px) {
.friends-page {
grid-template-columns: minmax(200px, 1fr);
margin-left: 10px;
margin-right: 10px;
gap: 10px;
}


}
Loading

0 comments on commit ec8cef7

Please sign in to comment.