Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 453B

123456789101112131415161718192021222324252627
  1. .collection {
  2. height: 45px;
  3. white-space: nowrap;
  4. box-sizing: content-box;
  5. padding-bottom: 1px;
  6. border-bottom: 1px solid #CCC;
  7. }
  8. .collection:last-child {
  9. border: none;
  10. }
  11. .collection .date-created,
  12. .collection .name {
  13. line-height: 45px;
  14. display: inline-block;
  15. overflow: hidden;
  16. white-space: nowrap;
  17. text-overflow: ellipsis;
  18. vertical-align: middle;
  19. }
  20. .collection .date-created {
  21. width: 45%;
  22. }
  23. .collection .name {
  24. width: calc(55% - 43px);
  25. }