forked from Laboratoria/BOG001-social-network
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f784ee
commit 0a8daf5
Showing
11 changed files
with
375 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,147 +1,147 @@ | ||
/*#timelineBody{ | ||
.containerTimeline { | ||
min-height: 80vh; | ||
padding: 30px 0; | ||
display: flex; | ||
justify-content: space-around; | ||
flex-direction: column; | ||
width: 100%; | ||
height: 100%; | ||
align-items: center; | ||
background-color: #FFFFF0; | ||
}*/ | ||
|
||
.containerTimeline { | ||
height: 100%; | ||
display: block; | ||
justify-content: center; | ||
align-items: center; | ||
background-color: #FFFFF0; | ||
} | ||
} | ||
|
||
|
||
/*POSTS*/ | ||
|
||
.newsfeed { | ||
padding: 0 20px; | ||
padding: 20px; | ||
|
||
} | ||
|
||
|
||
#profile-pic { | ||
width:50px; | ||
border-radius: 50px; | ||
} | ||
|
||
.card { | ||
width: 100%; | ||
height: 100%; | ||
background: #DADADA; | ||
box-shadow: 0 0 12px 2px rgba(0, 0, 0, .5); | ||
margin-bottom: 20px; | ||
border-radius: 10px; | ||
font-size: 14px; | ||
font-family: 'Anton'; | ||
color: black; | ||
width: 100%; | ||
height: 120px; | ||
background: #DADADA; | ||
box-shadow: 0 0 12px 2px rgba(0, 0, 0, .5); | ||
margin-bottom: 20px; | ||
border-radius: 10px; | ||
font-size: 14px; | ||
font-family: 'Anton'; | ||
color: black; | ||
} | ||
|
||
.card .content { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 15px 10px; | ||
margin-top:50px; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 15px 10px; | ||
margin-top:50px; | ||
} | ||
|
||
.card .header { | ||
display: flex; | ||
align-items: center; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.card .profile-pic { | ||
background-image: url('../img/user.png'); | ||
background-position: 50%; | ||
background-size: cover; | ||
height: 50px; | ||
width: 50px; | ||
border-radius: 50%; | ||
background-image: url('../img/user.png'); | ||
background-position: 50%; | ||
background-size: cover; | ||
height: 50px; | ||
width: 50px; | ||
border-radius: 50%; | ||
} | ||
|
||
.card .detail { | ||
margin-left: 10px; | ||
margin-left: 10px; | ||
} | ||
|
||
.card .posted { | ||
font-size: 10px; | ||
padding-top: 3px; | ||
font-family: 'Comfortaa'; | ||
color: black; | ||
font-size: 10px; | ||
padding-top: 3px; | ||
font-family: 'Comfortaa'; | ||
color: black; | ||
} | ||
|
||
.card .desc { | ||
padding-top: 10px; | ||
line-height: 1.5; | ||
font-family: 'Source Sans Pro'; | ||
color: black; | ||
padding-top: 10px; | ||
line-height: 1.5; | ||
font-family: 'Source Sans Pro'; | ||
color: black; | ||
} | ||
|
||
.card .categories { | ||
background-image: url('../img/serie.png'); | ||
background-position: 50%; | ||
background-size: cover; | ||
height: 30px; | ||
width: 30px; | ||
margin-left: 130px; | ||
background-image: url(''); | ||
background-position: 50%; | ||
background-size: cover; | ||
height: 30px; | ||
width: 30px; | ||
margin-left: 130px; | ||
|
||
} | ||
|
||
/*COMMENTS*/ | ||
|
||
.comments { | ||
margin-top: 20px; | ||
width: 70%; | ||
height: 100%; | ||
background: #4A4143; | ||
box-shadow: 0 0 12px 2px rgba(0, 0, 0, .5); | ||
margin-bottom: 20px; | ||
border-radius: 10px; | ||
font-size: 14px; | ||
font-family: 'Source Sans Pro'; | ||
color: white; | ||
padding: 15px; | ||
margin-left: 70px; | ||
} | ||
margin-top: 20px; | ||
width: 70%; | ||
height: 100%; | ||
background: #4A4143; | ||
box-shadow: 0 0 12px 2px rgba(0, 0, 0, .5); | ||
margin-bottom: 20px; | ||
border-radius: 10px; | ||
font-size: 14px; | ||
font-family: 'Source Sans Pro'; | ||
color: white; | ||
padding: 15px; | ||
margin-left: 70px; | ||
} | ||
|
||
.comments content { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 15px 10px; | ||
margin-top:50px; | ||
display: flex; | ||
flex-direction: column; | ||
padding: 15px 10px; | ||
margin-top:50px; | ||
|
||
} | ||
|
||
.icons { | ||
margin-left: 200px; | ||
margin-left: 200px; | ||
} | ||
|
||
.icons .commentaries { | ||
margin-left: 30px; | ||
margin-left: 30px; | ||
} | ||
|
||
.btnCommentaries { | ||
margin-top: 10px; | ||
align-self: center; | ||
text-align: center; | ||
height: 40px; | ||
width: 100px; | ||
background: #06B8C7; | ||
border: 2px solid #06B8C7; | ||
border-radius: 5px; | ||
font-family: 'Anton'; | ||
color: #FFFFFF; | ||
margin-left: 225px; | ||
margin-top: 10px; | ||
align-self: center; | ||
text-align: center; | ||
height: 40px; | ||
width: 100px; | ||
background: #06B8C7; | ||
border: 2px solid #06B8C7; | ||
border-radius: 5px; | ||
font-family: 'Anton'; | ||
color: #FFFFFF; | ||
margin-left: 225px; | ||
|
||
|
||
} | ||
|
||
.inputComment { | ||
font-family: 'Source Sans Pro'; | ||
width: 100%; | ||
font-family: 'Source Sans Pro'; | ||
width: 100%; | ||
|
||
} | ||
|
||
.input-comment { | ||
padding: 0 20px; | ||
padding: 0 20px; | ||
} | ||
|
||
.inputCommentandButton { | ||
display: none; | ||
} | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.