fixed profile displaying

This commit is contained in:
mrjvs
2018-11-18 15:47:55 +01:00
parent 36e728de4f
commit a7b7ba9cda
2 changed files with 34 additions and 33 deletions

View File

@@ -223,6 +223,40 @@ button, .btn, .btn-alt {
color: white;
}
/* components - profiles */
/* profiles */
.cardProfiles {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.profile {
min-width: 250px;
width: 50%;
max-width: 550px;
margin-bottom: 10px;
display: flex;
}
.profile .profileIcon {
margin-right: 10px;
width: 80px; height: 80px;
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.5);
}
.profileText {
width: calc(100% - 130px);
min-width: 200px;
display: flex;
flex-direction: column;
justify-content: center;
}
.profileText h2 {
margin: 0;
}
.profileText p {
margin-top: 5px;
}
/* components - inputs */
input::placeholder, textarea::placeholder {

View File

@@ -30,39 +30,6 @@ header h3 {
font-size: 1.1rem;
}
/* profiles */
.cardProfiles {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.profile {
min-width: 250px;
width: 50%;
max-width: 550px;
margin-bottom: 10px;
display: flex;
}
.profile .profileIcon {
margin-right: 10px;
width: 80px; height: 80px;
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.5);
}
.profileText {
width: calc(100% - 130px);
min-width: 200px;
display: flex;
flex-direction: column;
justify-content: center;
}
.profileText h2 {
margin: 0;
}
.profileText p {
margin-top: 5px;
}
/* news cards */
.smallCard {
padding: 20px;