summary refs log tree commit diff
path: root/components/InfoBar/InfoBar.module.css
blob: 7786bd1f5d66d54d0457d6c3fc53624b64116fff (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
34
.infobar {
  margin: calc(-1 * var(--text-padding));
  margin-bottom: var(--text-padding);
  padding: var(--text-padding);
  background: var(--main-background);
  height: var(--header-bar-height);
  width: var(--main-width);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: solid 1px var(--text-dimmed);
}

.infobar.sideNote {
  color: var(--text-dimmed);
  font-style: italic;
}

.infobar.postMeta {
  color: var(--text-dimmed);
}

.infobar.postMeta .author {
  color: var(--text-medium);
}

.infobar.postMeta .date {
  font-style: italic;
}

.infobar + p {
  margin-top: 0;
}