custom.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* Font Declaration */
  2. @font-face {
  3. font-family: 'NunitoReg';
  4. src: url('/static/fonts/nunito/Nunito-Regular.ttf');
  5. }
  6. h1, h3, a, p {
  7. font-family: 'NunitoReg';
  8. }
  9. h1 {
  10. margin: 20px 0 20px 0;
  11. }
  12. /* Globals */
  13. .center-elem {
  14. position: relative;
  15. margin: auto;
  16. }
  17. .padding-top {
  18. padding-top: 20px;
  19. }
  20. .red-border {
  21. border-color: #ff3333 !important;
  22. }
  23. .fw-heavy {
  24. font-weight: 900;
  25. }
  26. /* Major */
  27. body {
  28. padding-bottom: 50px;
  29. }
  30. /* Navbar */
  31. nav.navbar {
  32. background-color: #ff3333;
  33. max-width: 50%;
  34. position: relative;
  35. margin: auto;
  36. border-radius: 0 0 25px 25px;
  37. }
  38. .navbar-brand {
  39. filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(271deg) brightness(104%) contrast(101%);
  40. width: 50px;
  41. }
  42. nav a, .navbar-text, .navbar-toggler-icon {
  43. color: white;
  44. }
  45. .navbar-text {
  46. font-weight: bolder;
  47. font-size: large;
  48. padding-right: 20px;
  49. }
  50. /* Flash Alerts */
  51. .alert {
  52. position: relative;
  53. margin: auto;
  54. width: 20%;
  55. }
  56. /* Images */
  57. img {
  58. max-width: 250px;
  59. max-height: 250px;
  60. margin: 20px 0 20px 0;
  61. }
  62. .mimg {
  63. max-width: 100px;
  64. max-height: 100px;
  65. border-radius: 50% !important;
  66. }
  67. /* Input */
  68. input {
  69. max-width: 200px;
  70. padding: 8px;
  71. }
  72. .btn {
  73. background-color: #ff3333;
  74. border-color: #ff3333;
  75. }
  76. .upswd {
  77. margin-top: 20px;
  78. }
  79. .description_area {
  80. position: relative;
  81. margin: auto; /* centers */
  82. }
  83. .updesc {
  84. position: relative;
  85. margin: auto;
  86. display: block; /* sends to newline */
  87. margin-top: 20px;
  88. }
  89. /* Backgrounds */
  90. .matchbook-bg {
  91. background-color: #ffe6e6;
  92. width: 500px;
  93. border-radius: 25%;
  94. border-color: #ff3333 !important;
  95. margin: 20px 0 20px 0;
  96. }
  97. /* Messaging */
  98. .message_hist {
  99. max-width: 50%;
  100. min-height: 20%;
  101. max-height: 70%;
  102. position: relative;
  103. margin: auto;
  104. padding: 10px;
  105. border-color: #ffe6e6 !important;
  106. }
  107. .senderpic {
  108. transform: translate(-100px);
  109. }
  110. .recvrpic {
  111. transform: translate(100px);
  112. }
  113. .msging_name {
  114. display: inline; /* removes element's newline*/
  115. z-index: 3;
  116. position: relative;
  117. }