File: bottom-actions.css

package info (click to toggle)
elixir-ex-doc 0.35.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: javascript: 2,848; makefile: 15; xml: 12; sh: 5
file content (35 lines) | stat: -rw-r--r-- 841 bytes parent folder | download
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
35
.content-inner .bottom-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
}

.content-inner .bottom-actions .bottom-actions-button {
  display: flex;
  text-decoration: none;
  flex-direction: column;
  border-radius: var(--borderRadius);
  border: 1px solid var(--bottomActionsBtnBorder);
  padding: 8px 16px;
  min-width: 150px;
}

.content-inner .bottom-actions .bottom-actions-button .subheader {
  font-size: .8em;
  color: var(--bottomActionsBtnSubheader);
  white-space: nowrap;
}

.content-inner .bottom-actions .bottom-actions-button[rel="prev"] .subheader {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .content-inner .bottom-actions {
    flex-direction: column-reverse;
  }

  .content-inner .bottom-actions .bottom-actions-item:not(:first-child) {
    margin-bottom: 16px;
  }
}