Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. body {
  2. display: flex;
  3. flex-flow: column wrap;
  4. line-height: 1.5em;
  5. height: 100%;
  6. }
  7. main {
  8. max-width: 50em;
  9. margin: auto;
  10. flex: 1;
  11. padding: 1.5rem;
  12. }
  13. img {
  14. max-width: 100%;
  15. }
  16. code, blockquote {
  17. background: #eee;
  18. }
  19. code {
  20. font-family: monospace;
  21. }
  22. blockquote {
  23. font-style: italic;
  24. border-left: 10px solid #ccc;
  25. margin: 1.5em 10px;
  26. padding: 0.5em 10px;
  27. }
  28. head tr th {
  29. border-bottom: 1px solid var(--accent);
  30. }
  31. tr td:nth-child(1) {
  32. border-right: 1px solid var(--accent);
  33. }
  34. /* Homepage */
  35. .intro > h1 {
  36. color: #212121;
  37. font-size: 6vh;
  38. }
  39. .intro > h2 {
  40. color: #757575;
  41. font-size: 3vmin;
  42. }
  43. /* Page content */
  44. .content {
  45. padding-top: 20px;
  46. }
  47. /* Profile picture */
  48. .profile {
  49. width: 10vh;
  50. height: 10vh;
  51. border-radius: 50%;
  52. }
  53. /* Colored links */
  54. a:link, a:visited {
  55. color: var(--accent);
  56. }
  57. a.icon:hover {
  58. text-decoration: none;
  59. }
  60. a:hover {
  61. color: var(--accent) !important;
  62. }
  63. /* Copyright message */
  64. .copyright {
  65. margin: 15px 0;
  66. }
  67. /* Paginator */
  68. .pages {
  69. padding: 15px 0;
  70. }
  71. .pages-icon {
  72. padding: 0 15px;
  73. }
  74. /* List item for posts/projects */
  75. .item {
  76. padding: 10px 0;
  77. }
  78. .item-tag {
  79. background-color: var(--accent);
  80. }
  81. /* Navigation */
  82. .navbar-icon {
  83. width: 1em;
  84. height: 1em;
  85. display: inline-block !important;
  86. }
  87. .navbar-icon.email {
  88. background-image: url('/icons/email.svg');
  89. }
  90. .navbar-icon.twitter {
  91. background-image: url('/icons/twitter.svg');
  92. }
  93. .navbar-icon.git {
  94. background-image: url('/icons/share.svg');
  95. }
  96. nav{
  97. display: flex;
  98. border-bottom: var(--border-width) solid var(--accent);
  99. }
  100. nav div {
  101. flex: 1 0 33%;
  102. }
  103. nav a {
  104. flex: 1 0 33%;
  105. }
  106. footer {
  107. border-top: var(--border-width) solid var(--accent);
  108. }
  109. /* helpers */
  110. .right {
  111. text-align: right;
  112. float: right;
  113. }
  114. .left {
  115. text-align: left;
  116. float: left;
  117. }