WebExtension as alternative to Chromecast
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.

60 lines
969 B

7 years ago
  1. body {
  2. font-family: 'OpenSans', 'Roboto', 'sans-serif', 'sans';
  3. background: #000;
  4. color: #d13d29;
  5. }
  6. h1 {
  7. position: fixed;
  8. bottom: 15px;
  9. left: 15px;
  10. margin: 0;
  11. padding: 0;
  12. z-index: 2;
  13. }
  14. h1 i.fa {
  15. color: #468ac3;
  16. }
  17. a, a:hover {
  18. color: #468ac3;
  19. text-decoration: none;
  20. }
  21. #background {
  22. z-index: 1;
  23. position: fixed;
  24. display: block;
  25. top: 0;
  26. left: 0;
  27. width: 100%;
  28. height: 100%;
  29. background-position: top left;
  30. background-repeat: no-repeat;
  31. -webkit-background-size: cover;
  32. -moz-background-size: cover;
  33. -o-background-size: cover;
  34. background-size: cover;
  35. -webkit-transition: all 1.5s ease-in-out;
  36. -moz-transition: all 1.5s ease-in-out;
  37. -o-transition: all 1.5s ease-in-out;
  38. transition: all 1.5s ease-in-out;
  39. opacity: 0;
  40. box-shadow: 0px -150px 150px 0px #000 inset;
  41. }
  42. .unsplash {
  43. position: absolute;
  44. bottom: 0;
  45. right: 0;
  46. padding: 15px;
  47. }
  48. .hidden {
  49. display: none;
  50. }
  51. #description {
  52. font-style: italic;
  53. }