Sources du blog ALLELLA
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

87 lines
1.4 KiB

  1. ---
  2. ---
  3. @import "{{ site.theme }}";
  4. $link-color: #0082c9;
  5. $bg-color: white;
  6. $txt-color: black;
  7. $header-height: 20vh;
  8. header.site-header{
  9. border-top: none;
  10. min-height: $header-height;
  11. display: flex;
  12. align-items: center;
  13. a, a:visited {
  14. color : $txt-color;
  15. }
  16. .site-title{
  17. @include relative-font-size(1.2);
  18. float:none;
  19. // visibility: hidden;
  20. // background-image: url('../assets/images/logo.svg');
  21. }
  22. // .site-logo{
  23. // background: url('../assets/images/logo.svg') no-repeat;
  24. // background-size: contain;
  25. // }
  26. .wrapper {
  27. width: $content-width;
  28. display: flex;
  29. justify-content: space-between;
  30. }
  31. .site-nav .page-link{
  32. color: $bg-color;
  33. background-color: $txt-color;
  34. padding: 5px;
  35. font-variant: small-caps;
  36. @include relative-font-size(1);
  37. }
  38. }
  39. body{
  40. @include relative-font-size(1.4);
  41. .home {
  42. .post-list li {
  43. border-left: 10px solid $txt-color;
  44. padding-left: 10px;
  45. }
  46. h3 a, h3 a:visited {
  47. // color: $bg-color;
  48. // background-color: $txt-color;
  49. width: 50%;
  50. // padding:5px;
  51. }
  52. background-color: $bg-color;
  53. color: $txt-color;
  54. .post-meta-tags-cats {
  55. @include relative-font-size(0.8);
  56. span{
  57. margin-left:5px;
  58. }
  59. }
  60. }
  61. }
  62. .post-content{
  63. h2 {
  64. font-weight: 600;
  65. margin-top: 100px;
  66. }
  67. }