aboutsummaryrefslogtreecommitdiff
path: root/_sass/minima/custom-styles.scss
blob: 044b84295d7bb0b48466d3ac9bf07231d82a33a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Placeholder to allow defining custom styles that override everything else.
// (Use `_sass/minima/custom-variables.scss` to override variable defaults)
.site-header {
  display: flex;
  align-content: center;
  justify-content: center;

  .wrapper {
    display: flex;
    width: 100%;
    align-items: center;

    .site-title {
      width: calc(100% - 38px);
    }
  }
}
.footnotes {
  font-size: 90%;
}

::selection,
::-webkit-selection {
  background: #b3d4fc !important;
  color: #000 !important;
}