Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

89 lignes
1.9KB

  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. body.light {
  6. background: #fffcf5;
  7. }
  8. @media screen and (min-width: 1615px) {
  9. #disqus_thread{
  10. position: absolute;
  11. top:50px;
  12. right: 10px;
  13. width: calc(100rem - 75rem);
  14. }
  15. }
  16. .hack, .hack blockquote, .hack code, .hack em, .hack h1, .hack h2, .hack h3, .hack h4, .hack h5, .hack h6, .hack strong {
  17. font-family: 'Roboto Mono', monospace;
  18. }
  19. .hack {
  20. font-family: "Roboto Slab", serif;
  21. }
  22. a[rel*="external"]::after {
  23. 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");
  24. }
  25. nav a {
  26. padding: 2px;
  27. }
  28. .light nav a.active {
  29. background-color: inherit;
  30. color: #000;
  31. }
  32. .light a {
  33. color: #422eff;
  34. border-bottom: 1px solid #00ff9c;
  35. }
  36. .dark a {
  37. color: rgb(82, 174, 255);
  38. border-bottom: 1px solid rgb(0, 204, 125);
  39. }
  40. .light a:hover {
  41. color: #000;
  42. background-color: #00ff9c;
  43. }
  44. .dark a:hover {
  45. color: #333;
  46. background-color: #00ff9c;
  47. }
  48. .muted, .help-block {
  49. opacity: 0.70;
  50. }
  51. .light
  52. .hack .muted,
  53. .hack .help-block {
  54. color: #0e0e0e;
  55. }
  56. .hack > header {
  57. display: grid;
  58. grid-template-columns: 1fr minmax(min-content, auto);
  59. column-gap: 20px;
  60. grid-template-areas: "nav nav";
  61. }
  62. .leader{
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. }
  67. .myimage{
  68. margin-right: 10px;
  69. box-shadow: 0 4px 8px 0 rgba(0,0,0,.12),0 2px 4px 0 rgba(0,0,0,.08);
  70. border-width: 1px;
  71. border-radius: 9999px;
  72. border-color: #22292f;
  73. border-style: solid;
  74. height: 4rem;
  75. width: 4rem;
  76. }
  77. small {
  78. font-weight: 400;
  79. }