You are here

share_everywhere.css in Share Everywhere 2.x

Same filename and directory in other branches
  1. 8 css/share_everywhere.css
@-webkit-keyframes se-animation-left-inactive {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    left: -400px;
  }
  100% {
    opacity: 0;
    left: -400px;
  }
}

@-moz-keyframes se-animation-left-inactive {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    left: -400px;
  }
  100% {
    opacity: 0;
    left: -400px;
  }
}

@-o-keyframes se-animation-left-inactive {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    left: -400px;
  }
  100% {
    opacity: 0;
    left: -400px;
  }
}

@keyframes se-animation-left-inactive {
  0% {
    left: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    left: -400px;
  }
  100% {
    opacity: 0;
    left: -400px;
  }
}

@-webkit-keyframes se-animation-left-active {
  0% {
    left: -400px;
    opacity: 0;
  }
  50% {
    left: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@-moz-keyframes se-animation-left-active {
  0% {
    left: -400px;
    opacity: 0;
  }
  50% {
    left: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@-o-keyframes se-animation-left-active {
  0% {
    left: -400px;
    opacity: 0;
  }
  50% {
    left: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes se-animation-left-active {
  0% {
    left: -400px;
    opacity: 0;
  }
  50% {
    left: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@-webkit-keyframes se-animation-right-inactive {
  0% {
    right: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    right: -400px;
  }
  100% {
    opacity: 0;
    right: -400px;
  }
}

@-moz-keyframes se-animation-right-inactive {
  0% {
    right: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    right: -400px;
  }
  100% {
    opacity: 0;
    right: -400px;
  }
}

@-o-keyframes se-animation-right-inactive {
  0% {
    right: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    right: -400px;
  }
  100% {
    opacity: 0;
    right: -400px;
  }
}

@keyframes se-animation-right-inactive {
  0% {
    right: 0;
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    right: -400px;
  }
  100% {
    opacity: 0;
    right: -400px;
  }
}

@-webkit-keyframes se-animation-right-active {
  0% {
    right: -400px;
    opacity: 0;
  }
  50% {
    right: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@-moz-keyframes se-animation-right-active {
  0% {
    right: -400px;
    opacity: 0;
  }
  50% {
    right: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@-o-keyframes se-animation-right-active {
  0% {
    right: -400px;
    opacity: 0;
  }
  50% {
    right: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes se-animation-right-active {
  0% {
    right: -400px;
    opacity: 0;
  }
  50% {
    right: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

.se-block .block-title {
  margin: 5px 0;
}

.se-block .block-content .se-like-container {
  height: 20px;
  width: 85px;
}

.se-block .block-content .se-container {
  width: 100%;
}

.se-block .block-content .se-container .se-trigger {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.se-block .block-content .se-container .se-trigger img {
  max-height: 20px;
}

.se-block .block-content .se-container .se-trigger.se-disabled {
  cursor: auto;
}

.se-block .block-content .se-container .se-links-container {
  display: inline-block;
  width: -webkit-calc(100% - 35px);
  width: -moz-calc(100% - 35px);
  width: calc(100% - 35px);
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 20px;
}

.se-block .block-content .se-container .se-links-container .se-links {
  height: 20px;
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-animation-duration: 0.75s;
     -moz-animation-duration: 0.75s;
       -o-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
     -moz-animation-iteration-count: 1;
       -o-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-direction: alternate;
     -moz-animation-direction: alternate;
       -o-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
     -moz-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.se-block .block-content .se-container .se-links-container .se-links .se-link {
  display: inline-block;
  line-height: 0;
}

.se-block .block-content .se-container .se-links-container .se-links .se-link img {
  max-height: 20px;
}

.se-block .block-content .se-container .se-links-container .se-links .se-link.copy:hover, .se-block .block-content .se-container .se-links-container .se-links .se-link.copy:focus {
  cursor: pointer;
}

.se-block.se-has-like .se-container {
  width: -webkit-calc(100% - 85px);
  width: -moz-calc(100% - 85px);
  width: calc(100% - 85px);
}

.se-block.se-align-left .block-title {
  text-align: left;
}

.se-block.se-align-left .block-content .se-like-container {
  text-align: left;
  float: left;
}

.se-block.se-align-left .block-content .se-container {
  float: right;
}

.se-block.se-align-left .block-content .se-container .se-trigger {
  float: left;
}

.se-block.se-align-left .block-content .se-container .se-links-container {
  float: left;
  margin-left: 12px;
}

.se-block.se-align-left .block-content .se-container .se-links-container .se-links {
  text-align: left;
}

.se-block.se-align-left .block-content .se-container .se-links-container .se-links.se-active {
  -webkit-animation-name: se-animation-left-active;
     -moz-animation-name: se-animation-left-active;
       -o-animation-name: se-animation-left-active;
          animation-name: se-animation-left-active;
}

.se-block.se-align-left .block-content .se-container .se-links-container .se-links.se-inactive {
  -webkit-animation-name: se-animation-left-inactive;
     -moz-animation-name: se-animation-left-inactive;
       -o-animation-name: se-animation-left-inactive;
          animation-name: se-animation-left-inactive;
}

.se-block.se-align-right .block-title {
  text-align: right;
}

.se-block.se-align-right .block-content .se-like-container {
  text-align: right;
  float: right;
}

.se-block.se-align-right .block-content .se-container {
  float: left;
}

.se-block.se-align-right .block-content .se-container .se-trigger {
  float: right;
}

.se-block.se-align-right .block-content .se-container .se-links-container {
  float: right;
  margin-right: 12px;
}

.se-block.se-align-right .block-content .se-container .se-links-container .se-links {
  text-align: right;
}

.se-block.se-align-right .block-content .se-container .se-links-container .se-links.se-active {
  -webkit-animation-name: se-animation-right-active;
     -moz-animation-name: se-animation-right-active;
       -o-animation-name: se-animation-right-active;
          animation-name: se-animation-right-active;
}

.se-block.se-align-right .block-content .se-container .se-links-container .se-links.se-inactive {
  -webkit-animation-name: se-animation-right-inactive;
     -moz-animation-name: se-animation-right-inactive;
       -o-animation-name: se-animation-right-inactive;
          animation-name: se-animation-right-inactive;
}

File

css/share_everywhere.css
View source
  1. @-webkit-keyframes se-animation-left-inactive {
  2. 0% {
  3. left: 0;
  4. opacity: 1;
  5. }
  6. 25% {
  7. opacity: 0;
  8. }
  9. 50% {
  10. left: -400px;
  11. }
  12. 100% {
  13. opacity: 0;
  14. left: -400px;
  15. }
  16. }
  17. @-moz-keyframes se-animation-left-inactive {
  18. 0% {
  19. left: 0;
  20. opacity: 1;
  21. }
  22. 25% {
  23. opacity: 0;
  24. }
  25. 50% {
  26. left: -400px;
  27. }
  28. 100% {
  29. opacity: 0;
  30. left: -400px;
  31. }
  32. }
  33. @-o-keyframes se-animation-left-inactive {
  34. 0% {
  35. left: 0;
  36. opacity: 1;
  37. }
  38. 25% {
  39. opacity: 0;
  40. }
  41. 50% {
  42. left: -400px;
  43. }
  44. 100% {
  45. opacity: 0;
  46. left: -400px;
  47. }
  48. }
  49. @keyframes se-animation-left-inactive {
  50. 0% {
  51. left: 0;
  52. opacity: 1;
  53. }
  54. 25% {
  55. opacity: 0;
  56. }
  57. 50% {
  58. left: -400px;
  59. }
  60. 100% {
  61. opacity: 0;
  62. left: -400px;
  63. }
  64. }
  65. @-webkit-keyframes se-animation-left-active {
  66. 0% {
  67. left: -400px;
  68. opacity: 0;
  69. }
  70. 50% {
  71. left: 0;
  72. }
  73. 75% {
  74. opacity: 1;
  75. }
  76. 100% {
  77. opacity: 1;
  78. left: 0;
  79. }
  80. }
  81. @-moz-keyframes se-animation-left-active {
  82. 0% {
  83. left: -400px;
  84. opacity: 0;
  85. }
  86. 50% {
  87. left: 0;
  88. }
  89. 75% {
  90. opacity: 1;
  91. }
  92. 100% {
  93. opacity: 1;
  94. left: 0;
  95. }
  96. }
  97. @-o-keyframes se-animation-left-active {
  98. 0% {
  99. left: -400px;
  100. opacity: 0;
  101. }
  102. 50% {
  103. left: 0;
  104. }
  105. 75% {
  106. opacity: 1;
  107. }
  108. 100% {
  109. opacity: 1;
  110. left: 0;
  111. }
  112. }
  113. @keyframes se-animation-left-active {
  114. 0% {
  115. left: -400px;
  116. opacity: 0;
  117. }
  118. 50% {
  119. left: 0;
  120. }
  121. 75% {
  122. opacity: 1;
  123. }
  124. 100% {
  125. opacity: 1;
  126. left: 0;
  127. }
  128. }
  129. @-webkit-keyframes se-animation-right-inactive {
  130. 0% {
  131. right: 0;
  132. opacity: 1;
  133. }
  134. 25% {
  135. opacity: 0;
  136. }
  137. 50% {
  138. right: -400px;
  139. }
  140. 100% {
  141. opacity: 0;
  142. right: -400px;
  143. }
  144. }
  145. @-moz-keyframes se-animation-right-inactive {
  146. 0% {
  147. right: 0;
  148. opacity: 1;
  149. }
  150. 25% {
  151. opacity: 0;
  152. }
  153. 50% {
  154. right: -400px;
  155. }
  156. 100% {
  157. opacity: 0;
  158. right: -400px;
  159. }
  160. }
  161. @-o-keyframes se-animation-right-inactive {
  162. 0% {
  163. right: 0;
  164. opacity: 1;
  165. }
  166. 25% {
  167. opacity: 0;
  168. }
  169. 50% {
  170. right: -400px;
  171. }
  172. 100% {
  173. opacity: 0;
  174. right: -400px;
  175. }
  176. }
  177. @keyframes se-animation-right-inactive {
  178. 0% {
  179. right: 0;
  180. opacity: 1;
  181. }
  182. 25% {
  183. opacity: 0;
  184. }
  185. 50% {
  186. right: -400px;
  187. }
  188. 100% {
  189. opacity: 0;
  190. right: -400px;
  191. }
  192. }
  193. @-webkit-keyframes se-animation-right-active {
  194. 0% {
  195. right: -400px;
  196. opacity: 0;
  197. }
  198. 50% {
  199. right: 0;
  200. }
  201. 75% {
  202. opacity: 1;
  203. }
  204. 100% {
  205. right: 0;
  206. opacity: 1;
  207. }
  208. }
  209. @-moz-keyframes se-animation-right-active {
  210. 0% {
  211. right: -400px;
  212. opacity: 0;
  213. }
  214. 50% {
  215. right: 0;
  216. }
  217. 75% {
  218. opacity: 1;
  219. }
  220. 100% {
  221. right: 0;
  222. opacity: 1;
  223. }
  224. }
  225. @-o-keyframes se-animation-right-active {
  226. 0% {
  227. right: -400px;
  228. opacity: 0;
  229. }
  230. 50% {
  231. right: 0;
  232. }
  233. 75% {
  234. opacity: 1;
  235. }
  236. 100% {
  237. right: 0;
  238. opacity: 1;
  239. }
  240. }
  241. @keyframes se-animation-right-active {
  242. 0% {
  243. right: -400px;
  244. opacity: 0;
  245. }
  246. 50% {
  247. right: 0;
  248. }
  249. 75% {
  250. opacity: 1;
  251. }
  252. 100% {
  253. right: 0;
  254. opacity: 1;
  255. }
  256. }
  257. .se-block .block-title {
  258. margin: 5px 0;
  259. }
  260. .se-block .block-content .se-like-container {
  261. height: 20px;
  262. width: 85px;
  263. }
  264. .se-block .block-content .se-container {
  265. width: 100%;
  266. }
  267. .se-block .block-content .se-container .se-trigger {
  268. display: inline-block;
  269. width: 20px;
  270. height: 20px;
  271. cursor: pointer;
  272. }
  273. .se-block .block-content .se-container .se-trigger img {
  274. max-height: 20px;
  275. }
  276. .se-block .block-content .se-container .se-trigger.se-disabled {
  277. cursor: auto;
  278. }
  279. .se-block .block-content .se-container .se-links-container {
  280. display: inline-block;
  281. width: -webkit-calc(100% - 35px);
  282. width: -moz-calc(100% - 35px);
  283. width: calc(100% - 35px);
  284. overflow: hidden;
  285. -webkit-box-sizing: border-box;
  286. -moz-box-sizing: border-box;
  287. box-sizing: border-box;
  288. position: relative;
  289. height: 20px;
  290. }
  291. .se-block .block-content .se-container .se-links-container .se-links {
  292. height: 20px;
  293. position: absolute;
  294. margin: 0;
  295. padding: 0;
  296. list-style: none;
  297. -webkit-animation-duration: 0.75s;
  298. -moz-animation-duration: 0.75s;
  299. -o-animation-duration: 0.75s;
  300. animation-duration: 0.75s;
  301. -webkit-animation-iteration-count: 1;
  302. -moz-animation-iteration-count: 1;
  303. -o-animation-iteration-count: 1;
  304. animation-iteration-count: 1;
  305. -webkit-animation-timing-function: linear;
  306. -moz-animation-timing-function: linear;
  307. -o-animation-timing-function: linear;
  308. animation-timing-function: linear;
  309. -webkit-animation-direction: alternate;
  310. -moz-animation-direction: alternate;
  311. -o-animation-direction: alternate;
  312. animation-direction: alternate;
  313. -webkit-animation-fill-mode: forwards;
  314. -moz-animation-fill-mode: forwards;
  315. -o-animation-fill-mode: forwards;
  316. animation-fill-mode: forwards;
  317. }
  318. .se-block .block-content .se-container .se-links-container .se-links .se-link {
  319. display: inline-block;
  320. line-height: 0;
  321. }
  322. .se-block .block-content .se-container .se-links-container .se-links .se-link img {
  323. max-height: 20px;
  324. }
  325. .se-block .block-content .se-container .se-links-container .se-links .se-link.copy:hover, .se-block .block-content .se-container .se-links-container .se-links .se-link.copy:focus {
  326. cursor: pointer;
  327. }
  328. .se-block.se-has-like .se-container {
  329. width: -webkit-calc(100% - 85px);
  330. width: -moz-calc(100% - 85px);
  331. width: calc(100% - 85px);
  332. }
  333. .se-block.se-align-left .block-title {
  334. text-align: left;
  335. }
  336. .se-block.se-align-left .block-content .se-like-container {
  337. text-align: left;
  338. float: left;
  339. }
  340. .se-block.se-align-left .block-content .se-container {
  341. float: right;
  342. }
  343. .se-block.se-align-left .block-content .se-container .se-trigger {
  344. float: left;
  345. }
  346. .se-block.se-align-left .block-content .se-container .se-links-container {
  347. float: left;
  348. margin-left: 12px;
  349. }
  350. .se-block.se-align-left .block-content .se-container .se-links-container .se-links {
  351. text-align: left;
  352. }
  353. .se-block.se-align-left .block-content .se-container .se-links-container .se-links.se-active {
  354. -webkit-animation-name: se-animation-left-active;
  355. -moz-animation-name: se-animation-left-active;
  356. -o-animation-name: se-animation-left-active;
  357. animation-name: se-animation-left-active;
  358. }
  359. .se-block.se-align-left .block-content .se-container .se-links-container .se-links.se-inactive {
  360. -webkit-animation-name: se-animation-left-inactive;
  361. -moz-animation-name: se-animation-left-inactive;
  362. -o-animation-name: se-animation-left-inactive;
  363. animation-name: se-animation-left-inactive;
  364. }
  365. .se-block.se-align-right .block-title {
  366. text-align: right;
  367. }
  368. .se-block.se-align-right .block-content .se-like-container {
  369. text-align: right;
  370. float: right;
  371. }
  372. .se-block.se-align-right .block-content .se-container {
  373. float: left;
  374. }
  375. .se-block.se-align-right .block-content .se-container .se-trigger {
  376. float: right;
  377. }
  378. .se-block.se-align-right .block-content .se-container .se-links-container {
  379. float: right;
  380. margin-right: 12px;
  381. }
  382. .se-block.se-align-right .block-content .se-container .se-links-container .se-links {
  383. text-align: right;
  384. }
  385. .se-block.se-align-right .block-content .se-container .se-links-container .se-links.se-active {
  386. -webkit-animation-name: se-animation-right-active;
  387. -moz-animation-name: se-animation-right-active;
  388. -o-animation-name: se-animation-right-active;
  389. animation-name: se-animation-right-active;
  390. }
  391. .se-block.se-align-right .block-content .se-container .se-links-container .se-links.se-inactive {
  392. -webkit-animation-name: se-animation-right-inactive;
  393. -moz-animation-name: se-animation-right-inactive;
  394. -o-animation-name: se-animation-right-inactive;
  395. animation-name: se-animation-right-inactive;
  396. }