diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-03-26 21:17:01 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2023-03-26 21:17:01 +0300 |
commit | 3aa790585e8c3c8cff37fc065f34989477c5bdc3 (patch) | |
tree | 037ecb9fcad12e583deacb224b234a0f6456c696 /static | |
download | takeoff-3aa790585e8c3c8cff37fc065f34989477c5bdc3.tar.gz takeoff-3aa790585e8c3c8cff37fc065f34989477c5bdc3.zip |
Initial commit
Diffstat (limited to 'static')
-rw-r--r-- | static/main.css | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..568171e --- /dev/null +++ b/static/main.css @@ -0,0 +1,73 @@ +* { + box-sizing: border-box; + color: #fcf8e2; + font-family: monospace; +} + +body { + background-color: #000; + /* background: #000 repeat center fixed url("/static/grid.png"); */ + margin: 0; +} + +a { + color: #81acc1; +} + +.header-container, +.main-container, +select { + background-color: #000; +} + +.header-container, +.main-container { + margin: 0 auto; + padding: 1em; +} + +.header-container > pre { + font-size: 2em; + text-align: center; + color: #5b8277; +} + +.header-container { + max-width: 800px; + border-top: 1px solid #fcf8e2; +} + +.main-container { + max-width: 800px; + border-bottom: 1px solid #fcf8e2; +} + +input[type="text"] { + padding: 0.2em 0.5em; + background-color: #242424; +} + +#search-form input[type="text"] { + width: 100%; +} + +.btn { + padding: 0.2em 0.5em; + background-color: #5b8277; +} + +.btn:hover { + background-color: #7fac96; +} + +@media (max-width: 1100px){ + .header-container > pre { + font-size: 1em; + } +} + +@media (max-width: 720px){ + .header-container > pre { + font-size: 0.7em; + } +} |