diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-20 09:01:08 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 09:42:15 +0100 |
commit | 025ba97f3409aef208d87c86d02cb55544c88e4b (patch) | |
tree | 47eb94c5fa8bfe0c71425173ab6f3ac8661847be /src/styles/main.scss | |
parent | 071eb9c0335397c746b7035435f4f7393333d18b (diff) |
RESTRUCT Split style into several files
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss new file mode 100644 index 0000000..226509e --- /dev/null +++ b/src/styles/main.scss @@ -0,0 +1,29 @@ +html { + height: 100%; + background-size: cover; +} + +body { + font-size: 1.2rem; + font-family: Arial; + color: #999999; + margin: 5%; + + .parent { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: flex-start; + align-items: flex-start; + height: 100%; + + .item { + .name { + width: 100%; + text-align: center; + text-transform: uppercase; + margin-top: -20%; + } + } + } +}
\ No newline at end of file |