diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-11-13 16:37:38 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-11-13 16:37:38 +0100 |
| commit | 335c7a32380420166c6754883b103f53e49ad692 (patch) | |
| tree | 9edfe0195943611e37624f9e7a13b864db7924c9 /animism-align/frontend/site/site.css | |
| parent | e9a5a0eb4b122ab83fd48f7a0f34cd56ee63bd7e (diff) | |
starting viewer standalone frontend
Diffstat (limited to 'animism-align/frontend/site/site.css')
| -rw-r--r-- | animism-align/frontend/site/site.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/animism-align/frontend/site/site.css b/animism-align/frontend/site/site.css new file mode 100644 index 0000000..5a53028 --- /dev/null +++ b/animism-align/frontend/site/site.css @@ -0,0 +1,58 @@ +* { box-sizing: border-box; } +html, body { + margin: 0; + padding: 0; + width: 100%; + height: 100%; + overflow: hidden; +} +body { + background: #000; + color: #ddd; + font-family: 'Roboto', sans-serif; + font-size: 0.875rem; + height: 100%; + width: 100%; +} +.gray { + color: #888; +} + +/* layout */ + +.container { + height: 100%; + width: 100%; +} +.app { + /*display: flex;*/ + height: 100%; + width: 100%; +} +.app > div { + display: flex; + flex-direction: column; + height: 100%; + width: 100%; +} +.app .body { + display: flex; + flex-direction: row; + flex-grow: 1; + position: relative; + height: 100%; + width: 100%; +} + +.row { + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: flex-start; +} +.row > div { + margin-right: 1.5rem; +} +.row > div:last-child { + margin-right: 0; +} |
