A tumblelog theme for Hugo
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

145 líneas
2.1 KiB

  1. body {
  2. background-color: #777;
  3. width: 600px;
  4. margin: 50px auto;
  5. font-family: Helvetica, Arial, sans-serif;
  6. }
  7. .quote {
  8. font-family: monospace;
  9. border: 0px #777 solid;
  10. /*background-color: #eee;*/
  11. font-size: 1.8rem;
  12. line-height: 2.0rem;
  13. /*padding: 20px;*/
  14. margin: 30px 0;
  15. }
  16. .quote-credit {
  17. /*font-style: italic;*/
  18. text-align: right;
  19. font-size: 1.0rem;
  20. }
  21. .list-item {
  22. display: block;
  23. border: 0px #777 solid;
  24. background-color: white;
  25. padding: 10px 20px;
  26. margin: 60px 0;
  27. border-radius: 10px;
  28. }
  29. .list-item img {
  30. margin: 0px 0 20px 0;
  31. border-radius: 10px;
  32. }
  33. .list-quote {
  34. background-color: #444;
  35. color: white;
  36. }
  37. .list-video {
  38. background-color: #000;
  39. color: white;
  40. }
  41. .postmeta, .listmeta {
  42. font-size: 100%;
  43. color: #aaa;
  44. font-family: monospace;
  45. text-align: right;
  46. }
  47. .aside-list {
  48. font-family: Georgia, "Times New Roman", serif;
  49. font-size: 2.7rem;
  50. line-height: 3.5rem;
  51. }
  52. #aside-single {
  53. margin: 10rem 0;
  54. color: white;
  55. font-family: Georgia, "Times New Roman", serif;
  56. font-size: 4.0rem;
  57. line-height: 4.5rem;
  58. }
  59. img {
  60. width: 100%;
  61. border-radius: 10px;
  62. }
  63. figure {
  64. margin: 20px 0;
  65. padding: 0;
  66. }
  67. figcaption {
  68. text-transform: lowercase;
  69. letter-spacing: 0.2rem;
  70. text-align: center;
  71. font-size: 1.8rem;
  72. }
  73. article {
  74. font-size: 1.2rem;
  75. line-height: 1.6rem;
  76. }
  77. h1 {
  78. color: white;
  79. text-transform: lowercase;
  80. }
  81. article h1 {
  82. font-size: 2.0rem;
  83. line-height: 2.4rem;
  84. margin: 50px 0;
  85. }
  86. #site-title {
  87. margin: 70px 0;
  88. }
  89. #site-title a, #site-title a:visited {
  90. font-size: 4.0rem;
  91. color: white;
  92. text-decoration: none;
  93. text-transform: lowercase;
  94. }
  95. .tags li {
  96. display: inline;
  97. list-style-type: none;
  98. margin: 0 0 0 10px;
  99. text-transform: lowercase;
  100. }
  101. .tags li a, .tags li a:hover, .tags li a:visited {
  102. color: #777;
  103. text-decoration: none;
  104. }
  105. ul.pagination li {
  106. display: inline;
  107. background-color: white;
  108. color: black;
  109. padding: 10px;
  110. margin: 0 10px 0 0;
  111. }
  112. @media screen and (max-width: 599px) {
  113. body {
  114. width: 90%;
  115. margin: 20px auto;
  116. }
  117. img {
  118. width: 100%;
  119. }
  120. }