104 lines
1.6 KiB
CSS
104 lines
1.6 KiB
CSS
body {
|
|
background: #333;
|
|
color: #ffffff;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
opacity: 0;
|
|
}
|
|
|
|
input[type="radio"] + label {
|
|
font-weight: normal;
|
|
}
|
|
|
|
input[type="radio"]:checked + label {
|
|
font-weight: bold;
|
|
background-color: #566069;
|
|
}
|
|
|
|
input[type="radio"]:focus + label {
|
|
border: 1px dotted #000;
|
|
}
|
|
|
|
#home-section {
|
|
background-image: url("../img/home.webp");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
min-height: 600px;
|
|
height: 95vh;
|
|
/* height: auto; */
|
|
}
|
|
|
|
#home-section .home-inner {
|
|
padding-top: 75px;
|
|
/* padding-bottom: 10px; */
|
|
/* background: #333; */
|
|
}
|
|
|
|
/* #home-section .card-form {
|
|
opacity: 0.8;
|
|
} */
|
|
|
|
#home-section .dark-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 600px;
|
|
height: 95vh;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
#chat-section {
|
|
/* background-image: url('../img/home.jpg'); */
|
|
background: #495561;
|
|
/* background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed; */
|
|
min-height: 500px;
|
|
}
|
|
|
|
#chat-section .chat-inner {
|
|
padding-top: 75px;
|
|
/* background: #333; */
|
|
}
|
|
|
|
#chat-section .dark-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
min-height: 600px;
|
|
/* background: rgba(0, 0, 0, 0.7); */
|
|
}
|
|
|
|
textarea {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
#chatTextArea {
|
|
min-height: 300px;
|
|
}
|
|
|
|
/* .container {
|
|
width: 50%;
|
|
} */
|
|
|
|
.my-form-inputs {
|
|
width: 80%;
|
|
}
|
|
|
|
/* #login-card {
|
|
width: 40%;
|
|
} */
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
/* #login-card {
|
|
width: 90%;
|
|
} */
|
|
}
|