xref: /openbmc/phosphor-webui/app/common/styles/base/core.scss (revision 51946552fc8c6ac9b677ccf07949e837e9caaf52)
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}