From e34e3fd103f6cf1cd7575c38c4330fa531ac1f3a Mon Sep 17 00:00:00 2001 From: Humberto Alfonso Díaz Date: Thu, 20 Jun 2019 09:01:08 +0200 Subject: RESTRUCT Split style into several files --- src/styles/main.scss | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/styles/main.scss (limited to 'src/styles/main.scss') 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 -- cgit 1.2.3-korg