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.

131 linhas
2.8KB

  1. dark-mode-toggle {
  2. --dark-mode-toggle-dark-icon: url("/wp-content/sun.png");
  3. --dark-mode-toggle-light-icon: url("/wp-content/moon.png");
  4. }
  5. @font-face {
  6. font-family: 'Inter';
  7. font-display: auto;
  8. font-style: normal;
  9. font-weight: 400;
  10. src: url("https://rsms.me/inter/font-files/Inter-Regular.woff2") format("woff2"),
  11. url("https://rsms.me/inter/font-files/Inter-Regular.woff") format("woff");
  12. }
  13. @font-face {
  14. font-family: 'Inter';
  15. font-display: auto;
  16. font-style: normal;
  17. font-weight: 500;
  18. src: url("https://rsms.me/inter/font-files/Inter-Medium.woff2") format("woff2"),
  19. url("https://rsms.me/inter/font-files/Inter-Medium.woff") format("woff");
  20. }
  21. body.light {
  22. background: #ededed;
  23. }
  24. body.dark {
  25. background: #222;
  26. }
  27. .hack code {
  28. font-family: 'Roboto Mono', monospace;
  29. }
  30. .hack, .hack blockquote, .hack em, .hack h1, .hack h2, .hack h3, .hack h4, .hack h5, .hack h6, .hack strong {
  31. font-family: 'Inter', monospace;
  32. }
  33. .hack {
  34. font-family: "Inter", serif;
  35. font-weight: 400;
  36. text-align: justify;
  37. }
  38. a[rel*="external"]::after {
  39. content: " " url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20class='i-external'%20viewBox='0%200%2032%2032'%20width='14'%20height='14'%20fill='none'%20stroke='%23ff9800'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='9.38%'%3E%3Cpath%20d='M14%209%20L3%209%203%2029%2023%2029%2023%2018%20M18%204%20L28%204%2028%2014%20M28%204%20L14%2018'/%3E%3C/svg%3E");
  40. }
  41. nav a {
  42. padding: 2px;
  43. }
  44. .light nav a.active {
  45. background-color: inherit;
  46. color: #000;
  47. }
  48. .light a {
  49. color: #422eff;
  50. border-bottom: 1px solid #00ff9c;
  51. }
  52. .light pre {
  53. border: none;
  54. background: #222;
  55. padding: 1rem;
  56. }
  57. .light pre code {
  58. color: #00bcd4;
  59. }
  60. .dark a {
  61. color: rgb(82, 174, 255);
  62. border-bottom: 1px solid rgb(15, 143, 94);
  63. }
  64. .light a:hover {
  65. color: #000;
  66. background-color: #00ff9c;
  67. }
  68. .dark a:hover {
  69. color: #333;
  70. background-color: rgb(15, 143, 94);
  71. }
  72. .dark pre {
  73. background-color: #222;
  74. padding: 1rem;
  75. }
  76. .dark table tbody td:first-child {
  77. color: #ccc;
  78. }
  79. .muted, .help-block {
  80. opacity: 0.70;
  81. }
  82. .light
  83. .hack .muted,
  84. .hack .help-block {
  85. color: #0e0e0e;
  86. }
  87. .hack > header {
  88. display: grid;
  89. grid-template-columns: 1fr minmax(min-content, auto);
  90. column-gap: 20px;
  91. grid-template-areas: "nav nav";
  92. }
  93. .leader{
  94. display: flex;
  95. align-items: center;
  96. justify-content: center;
  97. }
  98. .myimage{
  99. margin-right: 10px;
  100. box-shadow: 0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08);
  101. border-width: 1px;
  102. border-radius: 9999px;
  103. border-color: #22292f;
  104. border-style: solid;
  105. height: 4rem;
  106. width: 4rem;
  107. }
  108. small {
  109. font-weight: 400;
  110. }
  111. a.no-underline {
  112. border: none;
  113. }
  114. .archive h1 {
  115. display: grid;
  116. grid-template-columns: 1fr minmax(min-content, auto);
  117. column-gap: 20px;
  118. grid-template-areas: "div div";
  119. }