From 1bc86704a9d2ee240c1422089768ba669209484f Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 16 Jun 2024 13:15:31 +0500 Subject: feat: html page --- style.css | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..c9c0837 --- /dev/null +++ b/style.css @@ -0,0 +1,84 @@ +body, html, h1, h2, h3, p { + margin: 0; + padding: 0; +} + +html { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +.todo { + color: gainsboro; + font-style: italic; +} + +.button { + padding: 6px; + color: black; + background-color: #f5f5f5; +} + +.button:hover { + background-color: black; + color: white; + text-decoration: line-through; +} + +.container { + width: 100%; + min-height: 100vh; + + display: flex; + justify-content: center; +} + +.wrapper { + padding-top: 12px; + width: 50%; +} + +.brand { + display: flex; + flex-direction: row; + align-items: center; +} + +.brand img { + width: 64px; + padding-right: 12px; +} + +.preview-container { + margin: 32px 0; + display: flex; + flex-direction: column; +} + +.preview-container .control-container { + display: flex; + flex-direction: row; + align-items: center; +} + +.preview-container .control { + display: flex; + flex-direction: row-reverse; + flex-grow: 1; +} + + + +.preview { + display: flex; + justify-content: center; + align-items: center; + + background-color: gainsboro; + + padding: 16px 16px; + margin: 16px 0; +} + +.preview img { + max-width: 100%; +} \ No newline at end of file -- cgit v1.2.3