ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 deletions

View File

@ -0,0 +1,365 @@
.container {
padding: 2px !important;
transition:
width 0.5s,
background 2s ease !important;
/* overflow-y: auto;
overflow-x: hidden; */
}
/* Chat Room */
.chat-container {
z-index: 5;
position: relative;
width: var(--msger-width);
height: var(--msger-height);
min-width: var(--msger-width);
min-height: var(--msger-height);
padding: 3px;
background: var(--msger-bg);
border: var(--border);
border-radius: 10px;
box-shadow: var(--box-shadow);
transition: background 1s;
/* border: 1px solid lime; */
}
/* Chat app container */
.chat-app {
position: absolute;
width: 100%;
height: 100%;
border-radius: 10px;
overflow-y: auto;
overflow-x: hidden;
/* border: 1px solid lime; */
}
/* Chat app people container */
.chat-app .people-list {
z-index: 6;
position: absolute;
padding: 20px;
top: 0;
left: 0;
width: 300px;
height: 99%;
background: var(--msger-bg);
overflow-y: auto;
overflow-x: hidden;
/* border: 1px solid lime; */
}
/* Chat app people list container */
.people-list {
-moz-transition: 0.5s;
-o-transition: 0.5s;
-webkit-transition: 0.5s;
transition: 0.5s;
/* border: 1px solid lime; */
}
.people-list .chat-list li {
padding: 10px 15px;
list-style: none;
border-radius: 3px;
}
.people-list .chat-list li:hover {
background: rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.people-list .chat-list li.active {
background: rgba(0, 0, 0, 0.2);
}
.people-list .chat-list li .name {
color: #fff;
font-size: 15px;
}
.people-list .chat-list img {
width: 45px;
border-radius: 50%;
}
.people-list img {
float: left;
border-radius: 50%;
}
.people-list .about {
float: left;
padding-left: 8px;
}
.people-list .about-buttons {
margin-top: 35px;
width: auto;
/* display: inline-flex; */
}
.people-list .status {
color: #999;
font-size: 13px;
}
/* Chat app people list container */
.chat-app .chat-list {
height: auto;
/* border: 1px solid lime; */
}
/* Chat app container */
.chat-app .chat {
position: relative;
margin-left: 300px;
border-left: var(--border);
border-radius: 10px;
/* border: 1px solid lime; */
}
/* Chat header */
.chat .chat-header {
padding: 15px 20px; /* top, right, bottom, left */
border-bottom: var(--border);
height: 70px;
max-height: 70px;
cursor: move;
/* overflow-x: auto; */
/* border: 1px solid lime; */
}
.all-participants-img {
border: var(--border);
width: 40px;
margin-right: 5px;
cursor: pointer;
}
.all-participants-img:hover {
background-color: lime;
transition: all 0.3s ease-in-out;
}
.chat .chat-header img {
float: left;
border-radius: 40px;
width: 40px;
}
.chat .chat-header .chat-about {
float: left;
padding-left: 10px;
color: #fff;
}
.chat .chat-header .status {
color: #999;
font-size: 13px;
}
.chat .chat-header .chat-option-buttons {
position: absolute;
display: inline-flex;
top: 20px;
right: 20px;
z-index: 5;
}
/* Chat history */
.chat .chat-history {
padding: 20px;
height: calc(100vh - 210px);
min-height: 490px;
max-height: 490px;
border-bottom: var(--border);
overflow-y: auto;
overflow-x: hidden;
/* border: 1px solid lime; */
}
.chat .chat-history ul {
padding: 0;
}
.chat .chat-history ul li {
list-style: none;
margin-bottom: 30px;
}
.chat .chat-history ul li:last-child {
margin-bottom: 0px;
}
.chat .chat-history .message-data {
margin-bottom: 15px;
}
.chat .chat-history .message-data img {
border-radius: 40px;
width: 40px;
}
.chat .chat-history .message-data-time {
color: #eeeeee;
padding-left: 6px;
}
/* chat message bubble */
.chat .chat-history .message {
color: #fff;
padding: 18px 20px;
line-height: 26px;
font-size: 16px;
max-width: 100%;
border-radius: 7px;
display: inline-block;
position: relative;
/* border: 1px solid lime; */
}
.chat .chat-history .message:after {
bottom: 100%;
left: 7%;
border: solid transparent;
content: ' ';
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: grey;
border-width: 10px;
margin-left: -10px;
}
.chat .chat-history .my-message {
background: var(--right-msg-bg);
}
.chat .chat-history .my-message:after {
bottom: 100%;
left: 30px;
border: solid transparent;
content: ' ';
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #999;
border-width: 10px;
margin-left: -10px;
}
.chat .chat-history .other-message {
background: var(--left-msg-bg);
text-align: left;
}
.chat .chat-history .other-message:after {
border-bottom-color: grey;
left: 93%;
}
/* Chat message */
.chat .chat-message {
padding: 20px;
max-height: 140px;
overflow-y: auto;
overflow-x: hidden;
/* border: 1px solid lime; */
}
/* Chat emoji */
.chatEmojiPicker {
z-index: 0;
position: absolute;
left: 5px;
bottom: 135px;
}
/* status */
.online,
.offline,
.me {
margin-right: 2px;
font-size: 8px;
vertical-align: middle;
}
.online {
color: #86c541;
}
.offline {
color: #e47297;
}
.me {
color: #1d8ecd;
}
.float-right {
float: right;
}
.float-left {
float: left;
}
.inline {
display: inline-flex;
}
.absolute {
position: absolute;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: ' ';
clear: both;
height: 0;
}
/** common **/
.mt5 {
margin-top: 5px;
}
.mt10 {
margin-top: 10px;
}
.mr5 {
margin-right: 5px;
}
.ml5 {
margin-left: 5px;
}
.ml10 {
margin-left: 10px;
}
/* Chat search and input message */
textarea,
input[type='text'] {
background: var(--msger-bg) !important;
color: #fff !important;
transition: height 0.5s !important;
}
.form-check-input {
cursor: pointer;
}
.hr {
border: 0;
display: block;
height: 1px;
background: #000000;
margin-top: 0px;
margin-bottom: 10px;
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,47 @@
#snow-container {
top: 0;
width: 100%;
height: 100vh;
position: absolute;
overflow: hidden;
transition: opacity 500ms;
}
.snow {
position: absolute;
animation:
fall ease-in infinite,
sway ease-in-out infinite;
color: skyblue;
}
@keyframes fall {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
top: 100vh;
opacity: 1;
}
}
@keyframes sway {
0% {
margin-left: 0;
}
25% {
margin-left: 50px;
}
50% {
margin-left: -50px;
}
75% {
margin-left: 50px;
}
100% {
margin-left: 0;
}
}

View File

@ -0,0 +1,244 @@
/*--------------------------------------------------------------
# Video grid
--------------------------------------------------------------*/
#videoMediaContainer {
z-index: 1;
position: absolute;
display: flex;
top: 0;
width: 100%;
height: 100%;
border-radius: 5px;
align-content: center;
flex-wrap: wrap;
align-items: center;
justify-content: center;
vertical-align: middle;
overflow: hidden;
/* border: 3px solid blue; */
}
#videoPinMediaContainer {
z-index: 1;
position: absolute;
display: none;
top: 0;
left: 0;
width: 75%;
height: 100%;
border-radius: 5px;
box-shadow: var(--box-shadow);
overflow: hidden;
/* animation: show 0.4s ease; */
/* border: 3px solid lime; */
}
.Camera {
position: relative;
vertical-align: middle;
align-self: center;
overflow: hidden;
display: inline-block;
background: transparent;
border-radius: 10px;
border: var(--border);
box-shadow: var(--box-shadow);
animation: show 0.4s ease;
}
/* .Camera:hover {
border: 3px solid rgb(113, 157, 239);
} */
#videoMediaContainer i {
position: absolute;
display: none;
top: 0;
color: rgb(0, 255, 71);
font-size: 14px;
align-items: center;
padding: 5px;
margin: 5px;
width: auto;
height: 25px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.4);
}
.videoAvatarImage {
z-index: 7;
position: absolute;
display: none;
width: var(--vmi-wh);
height: var(--vmi-wh);
border-radius: 50%;
}
.audio {
position: absolute;
right: 0;
color: #fff;
margin: 5px;
width: auto;
height: 25px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.1);
}
.username {
z-index: 1;
position: absolute;
right: 0;
bottom: 0;
color: #fff;
font-size: 10px;
display: flex;
align-items: center;
padding: 5px;
margin: 5px;
width: auto;
height: 25px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.1);
}
.fscreen {
position: absolute;
right: 0;
bottom: 0px;
color: #fff;
margin: 5px;
width: auto;
height: 25px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.1);
}
.videoMenuBar {
z-index: 2;
position: absolute;
display: inline;
top: 0;
left: 0;
padding: 10px;
background: rgba(0, 0, 0, 0.2);
font-size: small;
font-weight: bold;
text-align: center;
width: 100%;
cursor: default;
overflow: hidden;
}
.videoMenuBar input,
.videoMenuBar button {
float: right;
color: #fff;
background: transparent;
border-radius: 5px;
display: inline;
border: none;
}
.videoMenuBar button:hover {
color: grey;
transition: all 0.3s ease-in-out;
}
.expand-video-content {
position: relative;
display: none;
float: right;
width: auto;
}
.expand-video:hover .expand-video-content {
display: inline-flex;
}
#videoMediaContainer video {
position: absolute;
margin-left: auto;
margin-right: auto;
}
.videoCircle {
position: absolute;
width: var(--vmi-wh);
height: var(--vmi-wh);
border-radius: 50%;
/* center */
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.videoDefault {
position: absolute;
width: 100%;
height: 100%;
border-radius: '10px';
}
video {
width: 100%;
height: 100%;
object-fit: var(--videoObjFit);
border-radius: 10px;
cursor: pointer;
}
video:hover {
opacity: 0.9;
}
video:fullscreen {
object-fit: contain;
opacity: 1;
}
.mirror {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.blur {
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
input[type='range'] {
/* display: none; */
color: #fff;
width: 50px;
cursor: pointer;
}
@keyframes show {
0% {
opacity: 0;
transform: scale(0.4) translateY(20px);
}
100% {
opacity: 1;
transform: scale(1) translateY(0);
}
}
@media screen and (max-width: 600px) {
.username {
font-size: 12px;
}
}
@media screen and (max-width: 500px) {
.username {
font-size: 10px;
}
}

File diff suppressed because it is too large Load Diff