30 lines
501 B
TypeScript
30 lines
501 B
TypeScript
import { css } from '@design.estate/dees-element';
|
|
|
|
export default css`
|
|
h1 {
|
|
margin-top: 50px;
|
|
border-bottom: 1px solid;
|
|
border-image: radial-gradient(rgba(136, 136, 136, 0.44), rgba(136, 136, 136, 0)) 1 / 1 / 0 stretch;
|
|
padding-bottom: 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
h2 {
|
|
border-top: 1px dotted #666;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
dees-button {
|
|
margin-top: 16px;
|
|
width: 200px;
|
|
}
|
|
|
|
dees-input-text {
|
|
max-width: 400px;
|
|
}
|
|
`;
|