@collectionspace/cspace-public-browser
Version:
CollectionSpace public browser
65 lines (51 loc) • 818 B
CSS
@value buttonBgColor, buttonBgHoverColor, highlightColor from '../colors.css';
html {
scroll-behavior: smooth;
}
body {
padding: 0;
margin: 0;
color: #424242;
}
a {
text-decoration: none;
color: highlightColor;
}
a:hover {
text-decoration: underline;
}
a:focus {
outline: 1px dotted highlightColor;
outline-offset: 1px;
}
p {
margin: 0;
}
p:first-child {
margin-top: 16px;
}
p:last-child {
margin-bottom: 16px;
}
input {
outline-offset: -2px;
}
input, button {
color: inherit;
font: inherit;
}
button {
border: none;
border-radius: 3px;
background-color: buttonBgColor;
color: white;
outline-offset: -2px;
}
button:hover {
background-color: buttonBgHoverColor;
color: buttonBgColor;
}
button:focus {
outline-offset: 1px;
outline: 2px solid buttonBgColor;
}