Advertisement
canezzy

Untitled

Jan 30th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. .slikaDestinacije {
  2. width: 75%;
  3. height: auto;
  4. max-width: 100%;
  5. }
  6.  
  7. .mapContainer{
  8. height: 150px;
  9. padding-top: 5%;
  10. box-sizing: content-box !important;
  11. }
  12.  
  13. .slikaOverlap {
  14. float: left;
  15. position: absolute;
  16. left: 12.5%;
  17. top: 0;
  18. z-index: -1;
  19. background-color: hsla(200, 100%, 30%, 0.75);
  20. padding: 5px;
  21. color: #FFFFFF;
  22. font-weight: bold;
  23. margin-left: auto;
  24. margin-right: auto;
  25. justify-content: center;
  26. height: 100%;
  27. display: flex;
  28. align-items: center;
  29. }
  30.  
  31. .slikaOverlap:hover{
  32. cursor: pointer;
  33. }
  34.  
  35. .slikaDestinacijeContainer{
  36. position: relative;
  37. }
  38. td img {
  39. display: block;
  40. margin-left: auto;
  41. margin-right: auto;
  42. outline: 10px solid rgba(255, 255, 255, .5);
  43. outline-offset: -10px;
  44. }
  45.  
  46. .header {
  47. overflow: hidden;
  48. border: 2px solid #4d4d4d;
  49. padding: 20px 10px;
  50. }
  51.  
  52. .header button{
  53. float: right;
  54. margin: 2px;
  55. }
  56. .header a {
  57. float: left;
  58. font: 400 55px 'Lobster Two', Helvetica, sans-serif;
  59. text-shadow: 1px 1px 0px #ededed, 4px 4px 0px rgba(0,0,0,0.15);
  60. color: rgb(26, 146, 167);
  61. text-align: center;
  62. padding: 12px;
  63. text-decoration: none;
  64. line-height: 30px;
  65. border-radius: 4px;
  66. }
  67.  
  68. .header a:hover{
  69. color: #66CCCC;
  70. }
  71.  
  72. table.tabelaDetalji {
  73. width: 100%;
  74. padding: 12px 20px;
  75. margin: 8px 0;
  76. display: inline-block;
  77. }
  78.  
  79. table.tabelaDetalji td {
  80. width: 50%;
  81. padding: 12px 20px;
  82. margin: 8px 0;
  83. }
  84.  
  85. /* Center the image and position the close button */
  86. .imgcontainer {
  87. text-align: center;
  88. margin: 24px 0 12px 0;
  89. position: relative;
  90. }
  91.  
  92. .btnContainer{
  93. text-align:center;
  94. }
  95.  
  96. img.avatar {
  97. width: auto;
  98. height: 350px;
  99. border-radius: 50%;
  100. }
  101.  
  102. .container {
  103. margin: 0px 25px;
  104. }
  105.  
  106. span.psw {
  107. float: right;
  108. padding-top: 16px;
  109. }
  110.  
  111. /* The Modal (background) */
  112. .modal {
  113. display: none; /* Hidden by default */
  114. position: fixed; /* Stay in place */
  115. z-index: 1; /* Sit on top */
  116. left: 0;
  117. top: 0;
  118. height: 100% !important;
  119. width: 100% !important;
  120. background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  121. padding-top: 60px;
  122. }
  123.  
  124. /* Modal Content/Box */
  125. .modal-content {
  126. background-color: #fefefe;
  127. margin: 1% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  128. border: 1px solid #888;
  129. width: 40%; /* Could be more or less, depending on screen size */
  130. }
  131.  
  132. /* The Close Button (x) */
  133. .close {
  134. position: absolute;
  135. right: 25px;
  136. top: 0;
  137. color: #000;
  138. font-size: 35px;
  139. font-weight: bold;
  140. }
  141.  
  142. .close:hover,
  143. .close:focus {
  144. color: rgb(194, 108, 86);
  145. cursor: pointer;
  146. }
  147.  
  148.  
  149. /* Add Zoom Animation */
  150. .animate {
  151. animation: animatezoom 0.6s
  152. }
  153.  
  154. @keyframes animatezoom {
  155. from {transform: scale(0)}
  156. to {transform: scale(1)}
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement