Material omnisci override
by christopheviau
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
--mdc-theme-primary: #0089D1;
--mdc-theme-primary-active: #027BBC;
--mdc-theme-secondary: #0089D1;
--mdc-theme-secondary-active: #027BBC;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.css">
<link rel="stylesheet" href="https://raw.githack.com/omnisci/omnisci-ui/chrisv/rmwc-latest/dist/omnisci-ui.css">
</head>
<body>
<button class="mdc-button mdc-button--unelevated">
<span class="mdc-button__label">Button</span>
</button>
<div class="mdc-form-field">
<div class="mdc-checkbox">
<input type="checkbox"
class="mdc-checkbox__native-control"
id="checkbox-1"/>
<div class="mdc-checkbox__background">
<svg class="mdc-checkbox__checkmark mdc-theme--primary-bg"
viewBox="0 0 24 24">
<path class="mdc-checkbox__checkmark-path"
fill="none"
d="M1.73,12.91 8.1,19.28 22.79,4.59"/>
</svg>
<div class="mdc-checkbox__mixedmark"></div>
</div>
</div>
<label for="checkbox-1">Checkbox</label>
</div>
</body>
</html>