Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. /* The Modal (background) */
  2. .f4-typo-modal {
  3. font-family: Arial, Helvetica, sans-serif;
  4. display: none;
  5. /* Hidden by default */
  6. position: fixed;
  7. /* Stay in place */
  8. z-index: 1;
  9. /* Sit on top */
  10. left: 0;
  11. top: 0;
  12. width: 100%;
  13. /* Full width */
  14. height: 100%;
  15. /* Full height */
  16. overflow: auto;
  17. /* Enable scroll if needed */
  18. background-color: rgb(0, 0, 0);
  19. /* Fallback color */
  20. background-color: rgba(255, 255, 255, 0.5);
  21. /* Black w/ opacity */
  22. }
  23.  
  24. .f4-typo-popup-field {
  25. font-weight: bold;
  26. }
  27.  
  28. /* The Close Button */
  29. .f4-typo-popup-close {
  30. color: #aaa;
  31. float: right;
  32. font-size: 28px;
  33. font-weight: bold;
  34. }
  35.  
  36. .f4-typo-popup-close:hover,
  37. .f4-typo-popup-close:focus {
  38. color: black;
  39. text-decoration: none;
  40. cursor: pointer;
  41. }
  42.  
  43. /* Modal Header */
  44. .f4-typo-modal-header {
  45. padding: 2px 24px;
  46. color: #333;
  47. }
  48.  
  49. /* Modal Body */
  50. .f4-typo-modal-body {
  51. padding: 2px 24px;
  52. padding-bottom: 24px;
  53. color: #495057;
  54. }
  55.  
  56. /* Modal Footer */
  57. .f4-typo-modal-footer {
  58. padding: 10px 24px;
  59. background-color: #f8f9fa;
  60. color: white;
  61. }
  62.  
  63. /* Modal Content */
  64. .f4-typo-modal-content {
  65. position: relative;
  66. background-color: #fefefe;
  67. margin: auto;
  68. margin-top: 40px;
  69. padding: 0;
  70. border-bottom: 5px solid #f8f9fa;
  71. border-top: 5px solid #dc3030;
  72. min-width: 280px;
  73. max-width: 500px;
  74. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  75. border-radius: 0.15em;
  76. animation-name: animatetop;
  77. animation-duration: 0.4s
  78. }
  79.  
  80. /* Add Animation */
  81. @keyframes animatetop {
  82. from {
  83. top: -300px;
  84. opacity: 0
  85. }
  86.  
  87. to {
  88. top: 0;
  89. opacity: 1
  90. }
  91. }
  92.  
  93. .f4-typo-popup-icon {
  94. width: 24px;
  95. }
  96.  
  97. /* Button styles */
  98. a.f4-typo-button {
  99. display: inline-block;
  100. padding: 0.7em 1.4em;
  101. margin: 0 0 0.3em 0;
  102. border-radius: 0.15em;
  103. box-sizing: border-box;
  104. text-decoration: none;
  105. font-weight: 400;
  106. color: #FFFFFF;
  107. background-color: #3369ff;
  108. box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
  109. text-align: center;
  110. position: relative;
  111. cursor: pointer;
  112.  
  113. transition: all 0.2s linear;
  114. -webkit-transition: all 0.2s linear;
  115. -moz-transition: all 0.2s linear;
  116.  
  117. -webkit-touch-callout: none;
  118. /* iOS Safari */
  119. -webkit-user-select: none;
  120. /* Safari */
  121. -khtml-user-select: none;
  122. /* Konqueror HTML */
  123. -moz-user-select: none;
  124. /* Firefox */
  125. -ms-user-select: none;
  126. /* Internet Explorer/Edge */
  127. user-select: none;
  128. /* Non-prefixed version, currently supported by Chrome and Opera */
  129. }
  130.  
  131. a.f4-typo-button-ignore:hover {
  132. background-color: blue;
  133. }
  134.  
  135. a.f4-typo-button-fix:hover {
  136. background-color: rgb(52, 156, 97);
  137. }
  138.  
  139. a.f4-typo-button:active {
  140. top: 0.1em;
  141. }
  142.  
  143. a.f4-typo-button-ignore {
  144. background-color: #dc3030;
  145. float: right;
  146. }
  147.  
  148. a.f4-typo-button-fix {
  149. background-color: seagreen;
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement