mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-04-01 07:32:37 +00:00
168 lines
2.5 KiB
CSS
168 lines
2.5 KiB
CSS
/**
|
|
* Data export result stylesheet
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
/**
|
|
* Global rules
|
|
*/
|
|
.sidenav.sidenav-fixed {
|
|
/*transform: unset;*/
|
|
/*margin-top: 80px;*/
|
|
}
|
|
|
|
main {
|
|
margin-left: 300px;
|
|
}
|
|
|
|
main .container {
|
|
display: none;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 150%;
|
|
}
|
|
|
|
|
|
.account-image {
|
|
width: 50px;
|
|
vertical-align: middle;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* User information rules
|
|
*/
|
|
.user-information-table td:first-child {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.background-image {
|
|
max-width: 100px;
|
|
}
|
|
|
|
|
|
/**
|
|
* Posts rules
|
|
*/
|
|
.post .post-metadata {
|
|
font-style: italic;
|
|
display: block;
|
|
margin-top: 10px !important;
|
|
margin-bottom: 10px !important;
|
|
}
|
|
|
|
.post .post-comments {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.post .post-comments .comment {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.post .post-comments .comment div {
|
|
margin: 2px;
|
|
}
|
|
|
|
.post .post-comments .comment-author {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.post .post-comments .comment-metadata {
|
|
font-size: 80%;
|
|
font-style: italic;
|
|
}
|
|
|
|
.post .post-comments .comment .comment-image {
|
|
max-width: 100px;
|
|
}
|
|
|
|
.post .post-btn-pdf {
|
|
margin: auto;
|
|
display: block;
|
|
width: 100%;
|
|
max-width: 150px;
|
|
}
|
|
|
|
.post .post-end-countdown {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/**
|
|
* Comments rules
|
|
*/
|
|
#all-comments-table .comment-img {
|
|
width: 100%;
|
|
max-width: 350px;
|
|
}
|
|
|
|
|
|
/**
|
|
* All conversation messages rules
|
|
*/
|
|
#all-conversation-messages-table .conversation-img {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
|
|
/**
|
|
* Conversations rules
|
|
*/
|
|
#conversations-target .conversation h2 {
|
|
font-size: 150%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-metadata {
|
|
font-size: 90%;
|
|
font-style: italic;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-members {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-members > * {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages .message {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 10px;
|
|
font-size: 90%;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages .message .user-info {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages .message .message-content {
|
|
flex: 1;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages .message .message-image {
|
|
width: 100%;
|
|
max-width: 150px;
|
|
}
|
|
|
|
#conversations-target .conversation .conversation-messages .message .message-date {
|
|
font-size: 70%;
|
|
font-style: italic;
|
|
} |