aboutsummaryrefslogtreecommitdiff
path: root/_sass/minima/custom-styles.scss
blob: 96a5cdb985d05897ea5309a4c4c27b8a848406a0 (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
27
28
29
30
31
32
33
// 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);
    }
  }
}
a {
  &.prev { float: left; }
  &.next { float: right; }
  &.prev,&.next {
    margin-top: 10px;
  }
}
.footnotes {
  font-size: 90%;
}

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