mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-09 16:04:41 +00:00
71 lines
1.3 KiB
CSS
71 lines
1.3 KiB
CSS
/* Hosted-page chrome only; the themed form itself is styled by the mirrored
|
|
form-theme.css (all .wf-scoped, driven by the --wf-* variables). */
|
|
|
|
@import "./form-theme.css";
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
/* Embedded: the host page owns the backdrop, and viewport-height tricks
|
|
would feed back into the iframe auto-resize loop. */
|
|
body.embed .wf,
|
|
body.embed .wf.layout-split .wf-cover,
|
|
body.embed .wf.mode-focus .wf-main {
|
|
min-height: auto;
|
|
background: transparent;
|
|
}
|
|
body.embed .wf .wf-main {
|
|
padding: 4px 2px;
|
|
}
|
|
|
|
.hpwrap {
|
|
position: absolute;
|
|
left: -5000px;
|
|
top: -5000px;
|
|
height: 1px;
|
|
width: 1px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.plain {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
max-width: 26rem;
|
|
margin: 5rem auto;
|
|
padding: 0 1rem;
|
|
color: #0f172a;
|
|
text-align: center;
|
|
}
|
|
.plain h1 {
|
|
font-size: 1.1rem;
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
.plain p {
|
|
font-size: 0.9rem;
|
|
color: #475569;
|
|
}
|
|
.plain button {
|
|
font: inherit;
|
|
font-size: 0.85rem;
|
|
margin-top: 0.75rem;
|
|
padding: 0.45rem 1rem;
|
|
border: 1px solid #cbd5e1;
|
|
border-radius: 0.4rem;
|
|
background: #fff;
|
|
color: #0f172a;
|
|
cursor: pointer;
|
|
}
|
|
.plain button:hover {
|
|
background: #f8fafc;
|
|
}
|