aboutsummaryrefslogtreecommitdiff
path: root/templates/@theme-base/pm-styles/_pm-layout.scss
blob: 5ded72d900ce123a27b877f8b220e307b5a4d09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* for 1px-high hr */
hr {
  background-color: $color-hr;
  border: 0;
  color: $color-hr;
  height: $hr-height;
  margin: 0 0 1em;
  padding: 0;
}

/* rounded corners */
.rounded { border-radius: $global-border-radius; }
.rounded50 { border-radius: 50%; }
.rounded1e { border-radius: 1em; }
.rounded0 { border-radius: 0; }
.rounded0-left { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.rounded0-right { border-top-right-radius: 0; border-bottom-right-radius: 0; }

kbd {
  @extend .rounded;
  background-color: var(--bgcolor-main-area, $pm-global-light);
  border: 1px solid var(--bordercolor-input, $pm-global-border);
}