Newer
Older
task-bldg / src / main / resources / static / css / app.css
@haya4 haya4 on 19 Jun 2023 1 KB DBテーブル: task-status
  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-gray {
  67. color: white;
  68. background-color: #a9a9a9;
  69. }
  70.  
  71. .btn-navy:hover {
  72. color: white;
  73. background-color: #0d47a1;
  74. }
  75.  
  76. /* Off-Canvas (SideBar) */
  77. .offcanvas {
  78. width: 200px;
  79. }
  80.  
  81. @media (min-width: 992px) {
  82. .offcanvas {
  83. transform: none;
  84. visibility: visible !important;
  85. }
  86.  
  87. .offcanvas-outside {
  88. transition: margin-left 0.3s ease-in-out;
  89. margin-left: 200px;
  90. }
  91. }
  92.  
  93. .btn-circle {
  94. width: 40px;
  95. height: 40px;
  96. border-radius: 50%;
  97. opacity: 0.5;
  98. border: 0;
  99. }
  100.  
  101. /* Link */
  102. a {
  103. text-decoration: none;
  104. }
  105.  
  106. /* Size */
  107. .mh-100 {
  108. height: calc(100vh - 56px)
  109. }
  110.  
  111. /* Table */
  112. .table > :not(:first-child) {
  113. border-top: 0;
  114. }