Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
pauluwaifo authored Sep 10, 2023
1 parent ae4ab9d commit cda6bab
Showing 1 changed file with 129 additions and 1 deletion.
130 changes: 129 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,132 @@
font-weight: 700;
text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {

.wrapper {
background-color: #0d1520;
width:25%;
height: 320px;
border-radius: 20px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
}
@media only screen and (max-width: 768px) {

.wrapper {
width:90%;
height: 350px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background-color: #273345;
border-radius: 5px;
}
.profile-img-wrapper {
width: 80px;
height: 80px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
border: 3px solid #786d89;
}
#profile-image {
width: 70px;
height: 70px;
}

}
@media only screen and (max-width: 375px) {

.wrapper {
background-color: #273345;
border-radius: 5px;
width:90%;
height: 350px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.profile-img-wrapper {
width: 80px;
height: 80px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
border: 3px solid #786d89;
}
#profile-image {
width: 70px;
height: 70px;
}
button {
margin-top: 20px;
padding: 12px 15px;
background-color: black;
border: 0;
color: white;
border-radius: 20px;
background-color: rgb(103, 103, 103);
font-weight: 600 !important;
}
.live-data{
display: flex;
gap: 20px;
align-items: center;
}
}
@media only screen and (max-width: 320px) {

.wrapper {
background-color: #0d1520;
width:95%;
height: 320px;
border-radius: 20px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.profile-img-wrapper {
width: 70px;
height: 70px;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
border: 3px solid #786d89;
}
#profile-image {
width: 60px;
height: 60px;
}
button {
margin-top: 20px;
padding: 10px 12px;
background-color: black;
border: 0;
color: white;
border-radius: 20px;
background-image: linear-gradient(
to right,
#2b5876 0%,
#4e4376 51%,
#2b5876 100%
);
}
.live-data{
display: flex;
gap: 10px;
align-items: center;
}
}

0 comments on commit cda6bab

Please sign in to comment.