diff options
author | Julien Dessaux | 2024-03-25 13:58:48 +0100 |
---|---|---|
committer | Julien Dessaux | 2024-03-25 13:58:48 +0100 |
commit | 4c9b51b8c6b2ebeea0481d219df89ed4fec1e360 (patch) | |
tree | 4fadf1fb8dc7de8de571d828ecf61014826d9e9e /static/index4.css | |
parent | chore(dictionary): go mod init and initial dictionary (diff) | |
download | ods-4c9b51b8c6b2ebeea0481d219df89ed4fec1e360.tar.gz ods-4c9b51b8c6b2ebeea0481d219df89ed4fec1e360.tar.bz2 ods-4c9b51b8c6b2ebeea0481d219df89ed4fec1e360.zip |
feat(ods): implement basic ods functionality
Diffstat (limited to '')
-rw-r--r-- | static/index4.css | 57 |
1 files changed, 57 insertions, 0 deletions
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; +} |