From 4c9b51b8c6b2ebeea0481d219df89ed4fec1e360 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 25 Mar 2024 13:58:48 +0100 Subject: feat(ods): implement basic ods functionality --- static/index4.css | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 static/index4.css (limited to 'static/index4.css') diff --git a/static/index4.css b/static/index4.css new file mode 100644 index 0000000..34637fe --- /dev/null +++ b/static/index4.css @@ -0,0 +1,57 @@ +* { + box-sizing: border-box; + scrollbar-gutter: stable both-edges; +} + +body { + background: #009E60; + display: grid; + grid-template-rows: auto 1fr auto; + font-family: -apple-system, BlinkMacSystemFont, + "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", + "Fira Sans", "Droid Sans", "Helvetica Neue", + sans-serif; + font-feature-settings: "kern" 1; + font-kerning: normal; +} + +form { + align-items: center; + display: flex; + flex-wrap: wrap; + justify-content: start; +} + +input,.btn-group { + margin-top: 1em; + margin-right: 1.5em; +} + +main { + background: #F6F7EB; + padding-left: 1em; + padding-right: 1em; +} + +@media only screen and (min-width: 48rem) { + body { + max-width:48rem; + margin-left: auto; + margin-right: auto; + } +} + +span { + font-weight: bold; + padding-bottom: 0.1em; + padding-left: 0.5em; + padding-right: 0.5em; + padding-top: 0.1em; +} +.valid { + background: #009E60; + color: #F6F7EB; +} +.invalid { + background: #E94F37; +} -- cgit v1.2.3