style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. body {
  2. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Cantarell,"Helvetica Neue",sans-serif;
  3. font-size: 14px;
  4. padding: 0;
  5. margin: 0;
  6. color: #333;
  7. }
  8. .storiesWrapper {
  9. padding: 12px;
  10. max-width: 500px;
  11. margin: 0 auto;
  12. }
  13. h1 {
  14. text-align: center;
  15. font-family: monospace;
  16. padding: 0 12px;
  17. border-bottom: 1px solid #ddd;
  18. font-size: 24px;
  19. height: 56px;
  20. line-height: 56px;
  21. margin-bottom: 0;
  22. white-space: nowrap;
  23. text-overflow: ellipsis;
  24. overflow: hidden;
  25. }
  26. h1.Snapgram {
  27. background: #fff;
  28. color: #333;
  29. }
  30. h1.FaceSnap {
  31. background: #3b5998;
  32. color: #fff;
  33. }
  34. h1.VemDeZAP {
  35. background: #085e53;
  36. color: #fff;
  37. }
  38. h1.Snapssenger {
  39. background: #0084ff;
  40. color: #fff;
  41. }
  42. .disclaimer {
  43. display: block;
  44. text-decoration: none !important;
  45. color: #333;
  46. line-height: 1.5em;
  47. background: #ffffd2;
  48. border-radius: 3px;
  49. margin: 12px 12px 0;
  50. padding: 12px 12px 12px 74px;
  51. font-size: 13px;
  52. max-width: 500px;
  53. overflow: hidden;
  54. min-height: 50px;
  55. }
  56. .disclaimer img {
  57. float: left;
  58. margin-right: 12px;
  59. width: 50px;
  60. position: absolute;
  61. margin-left: -62px;
  62. }
  63. .disclaimer a {
  64. color: inherit !important;
  65. border: 0;
  66. }
  67. .disclaimer p {
  68. margin: 0;
  69. }
  70. .disclaimer p + p {
  71. margin-top: 1.25em;
  72. }
  73. .skin {
  74. text-transform: uppercase;
  75. white-space: nowrap;
  76. overflow: hidden;
  77. font-weight: bold;
  78. position: absolute;
  79. z-index: 10;
  80. left: 0;
  81. right: 0;
  82. bottom: 0;
  83. background: #fff;
  84. font-size: 16px;
  85. padding: 12px;
  86. color: #fff;
  87. background: #333;
  88. }
  89. .skin select {
  90. background: #fff;
  91. font-size: inherit;
  92. text-transform: none;
  93. max-width: 30%;
  94. }
  95. @media (min-width: 524px) {
  96. .disclaimer {
  97. margin: 12px auto;
  98. }
  99. }