A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
1.6 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. body {
  2. background: #333;
  3. color: #ffffff;
  4. }
  5. input[type="radio"] {
  6. opacity: 0;
  7. }
  8. input[type="radio"] + label {
  9. font-weight: normal;
  10. }
  11. input[type="radio"]:checked + label {
  12. font-weight: bold;
  13. background-color: #566069;
  14. }
  15. input[type="radio"]:focus + label {
  16. border: 1px dotted #000;
  17. }
  18. #home-section {
  19. background-image: url("../img/home.webp");
  20. background-repeat: no-repeat;
  21. background-size: cover;
  22. background-attachment: fixed;
  23. min-height: 600px;
  24. height: 95vh;
  25. /* height: auto; */
  26. }
  27. #home-section .home-inner {
  28. padding-top: 75px;
  29. /* padding-bottom: 10px; */
  30. /* background: #333; */
  31. }
  32. /* #home-section .card-form {
  33. opacity: 0.8;
  34. } */
  35. #home-section .dark-overlay {
  36. position: absolute;
  37. top: 0;
  38. left: 0;
  39. width: 100%;
  40. min-height: 600px;
  41. height: 95vh;
  42. background: rgba(0, 0, 0, 0.7);
  43. }
  44. #chat-section {
  45. /* background-image: url('../img/home.jpg'); */
  46. background: #495561;
  47. /* background-repeat: no-repeat;
  48. background-size: cover;
  49. background-attachment: fixed; */
  50. min-height: 500px;
  51. }
  52. #chat-section .chat-inner {
  53. padding-top: 75px;
  54. /* background: #333; */
  55. }
  56. #chat-section .dark-overlay {
  57. position: absolute;
  58. top: 0;
  59. left: 0;
  60. width: 100%;
  61. min-height: 600px;
  62. /* background: rgba(0, 0, 0, 0.7); */
  63. }
  64. textarea {
  65. -webkit-box-sizing: border-box;
  66. -moz-box-sizing: border-box;
  67. box-sizing: border-box;
  68. width: 100%;
  69. }
  70. #chatTextArea {
  71. min-height: 300px;
  72. }
  73. /* .container {
  74. width: 50%;
  75. } */
  76. .my-form-inputs {
  77. width: 80%;
  78. }
  79. /* #login-card {
  80. width: 40%;
  81. } */
  82. @media only screen and (max-width: 600px) {
  83. /* #login-card {
  84. width: 90%;
  85. } */
  86. }