Newer
Older
task-bldg / src / main / resources / static / css / app.css
@haya4 haya4 on 8 Aug 2022 1 KB fixed
  1. #map {
  2. width: 100%;
  3. height: 640px;
  4. }
  5. #popup {
  6. position: relative;
  7. display: inline-block;
  8. margin: 1.5em 0;
  9. padding: 7px 10px;
  10. min-width: 120px;
  11. max-width: 100%;
  12. color: #555;
  13. font-size: 16px;
  14. background: #FFF;
  15. border: solid 3px #555;
  16. box-sizing: border-box;
  17. }
  18.  
  19. #popup:before {
  20. content: "";
  21. position: absolute;
  22. bottom: -24px;
  23. left: 50%;
  24. margin-left: -15px;
  25. border: 12px solid transparent;
  26. border-top: 12px solid #FFF;
  27. z-index: 2;
  28. }
  29.  
  30. #popup:after {
  31. content: "";
  32. position: absolute;
  33. bottom: -30px;
  34. left: 50%;
  35. margin-left: -17px;
  36. border: 14px solid transparent;
  37. border-top: 14px solid #555;
  38. z-index: 1;
  39. }
  40.  
  41. .popup p {
  42. margin: 0;
  43. padding: 0;
  44. }
  45.  
  46. /* Color */
  47. .bg-image {
  48. background:
  49. linear-gradient(to bottom,
  50. rgba(34, 74, 190, 1),
  51. rgba(34, 74, 190, 0.7)
  52. ),
  53. url('/task-bldg/img/photo.jpg');
  54. background-size: cover;
  55. }
  56.  
  57. .text-navy {
  58. color: #224abe;
  59. }
  60.  
  61. .btn-navy {
  62. color: white;
  63. background-color: #224abe;
  64. }
  65.  
  66. .btn-navy:hover {
  67. color: white;
  68. background-color: #0d47a1;
  69. }
  70.  
  71. /* Off-Canvas (SideBar) */
  72. .offcanvas {
  73. width: 200px;
  74. }
  75.  
  76. @media (min-width: 992px) {
  77. .offcanvas {
  78. transform: none;
  79. visibility: visible !important;
  80. }
  81.  
  82. .offcanvas-outside {
  83. transition: margin-left 0.3s ease-in-out;
  84. margin-left: 200px;
  85. }
  86. }
  87.  
  88. .btn-circle {
  89. width: 40px;
  90. height: 40px;
  91. border-radius: 50%;
  92. opacity: 0.5;
  93. border: 0;
  94. }
  95.  
  96. /* Link */
  97. a {
  98. text-decoration: none;
  99. }
  100.  
  101. /* Size */
  102. .mh-100 {
  103. height: calc(100vh - 56px)
  104. }
  105.  
  106. /* Table */
  107. .table > :not(:first-child) {
  108. border-top: 0;
  109. }