xref: /openbmc/phosphor-webui/app/common/styles/base/core.scss (revision c016139f87e9ad6a7f95affba3d4f75f624aafe0)
1html, body {
2  height: 100%;
3  @include fontFamily;
4  font-size: 16px;
5  color: $black;
6}
7
8p {
9  margin-bottom: .8em;
10  transition: margin .05s;
11}
12
13a {
14  color: $links;
15  &:visited {
16    color: $links__visited;
17  }
18  &:hover {
19    text-decoration: underline;
20  }
21  :focus {
22    color: $links;
23  }
24}