Açıklama Yok

um-misc.css 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .um-login.um-logout {
  2. max-width: 300px !important;
  3. }
  4. .um-misc-with-img {
  5. position: relative;
  6. font-size: 15px;
  7. border-bottom: 3px solid #eee;
  8. text-align: center;
  9. margin-bottom: 14px;
  10. padding-top: 4px;
  11. padding-bottom: 14px;
  12. }
  13. .um-misc-img {
  14. text-align: center;
  15. }
  16. .um-misc-img img {
  17. border-radius: 999px;
  18. height: auto !important;
  19. display: inline-block !important;
  20. }
  21. .um-misc-ul,
  22. .um-misc-ul li {
  23. font-size: 14px;
  24. }
  25. /* responsive embeds */
  26. .um-youtube,
  27. .um-vimeo,
  28. .um-googlemap {
  29. position: relative;
  30. height: 0;
  31. overflow: hidden;
  32. }
  33. .um-youtube {padding-bottom: 56.25%;}
  34. .um-vimeo {padding-bottom: 56.25%;}
  35. .um-googlemap {padding-bottom: 75%;}
  36. .um-youtube iframe,
  37. .um-vimeo iframe,
  38. .um-googlemap iframe {
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. width: 100% !important;
  43. height: 100% !important;
  44. }
  45. /* profile misc */
  46. .um-profile-connect.um-member-connect {
  47. padding: 5px 0 10px 0;
  48. }
  49. .um-profile-connect.um-member-connect a {
  50. text-align: center;
  51. width: 36px;
  52. line-height: 36px;
  53. height: 36px;
  54. font-size: 20px;
  55. border-radius: 999px;
  56. color: #fff !important;
  57. opacity: 0.85;
  58. margin: 0 1px;
  59. transition: 0.25s;
  60. display: inline-block;
  61. }
  62. .um-profile-connect.um-member-connect a:hover {
  63. opacity: 1;
  64. }
  65. /* pop effect */
  66. @-webkit-keyframes um-effect-pop {
  67. 50% {
  68. -webkit-transform: scale(1.2);
  69. transform: scale(1.2);
  70. }
  71. }
  72. @keyframes um-effect-pop {
  73. 50% {
  74. -webkit-transform: scale(1.2);
  75. transform: scale(1.2);
  76. }
  77. }
  78. .um-effect-pop {
  79. -webkit-animation-name: um-effect-pop;
  80. animation-name: um-effect-pop;
  81. -webkit-animation-duration: 0.2s;
  82. animation-duration: 0.2s;
  83. -webkit-animation-timing-function: linear;
  84. animation-timing-function: linear;
  85. -webkit-animation-iteration-count: 1;
  86. animation-iteration-count: 1;
  87. }
  88. /* content lockers */
  89. .um-locked-content {
  90. width: 100%;
  91. box-sizing: border-box;
  92. border: 2px dotted #cc3000;
  93. color: #333;
  94. background: #fff;
  95. font-size: 14px;
  96. padding: 20px;
  97. border-radius: 4px;
  98. margin-bottom: 20px;
  99. }
  100. .um-locked-content a {
  101. border: none !important;
  102. }