diff options
Diffstat (limited to 'frontend/src/styles')
-rw-r--r-- | frontend/src/styles/helper.css | 7 | ||||
-rw-r--r-- | frontend/src/styles/layout.css | 43 |
2 files changed, 44 insertions, 6 deletions
diff --git a/frontend/src/styles/helper.css b/frontend/src/styles/helper.css index 55b0967e..c8d240f6 100644 --- a/frontend/src/styles/helper.css +++ b/frontend/src/styles/helper.css @@ -29,14 +29,9 @@ .footer-center { position: relative; height: 1rem; + text-align: center; } -.footer-center>* { - position: fixed; - bottom: 15px; - left: 50%; - transform: translateX(-50%); -} .row-height { white-space: nowrap; diff --git a/frontend/src/styles/layout.css b/frontend/src/styles/layout.css index 33f4cf2b..676bec32 100644 --- a/frontend/src/styles/layout.css +++ b/frontend/src/styles/layout.css @@ -15,4 +15,47 @@ body { .align-items-view>*:last-child { transform: perspective(100em) rotateY(-25deg) translateZ(1em); +} + +.ns-row { + width: 98%; + display: flex; + flex-direction: row; + flex-wrap: wrap; + margin: 0; + padding: 0; +} + +.ns-col { + flex-grow: 1; + padding: 2px; + margin-bottom: 0; + padding-bottom: 0; +} + +.break-1, +.break-2 { + height: 1px; + width: 100%; +} + +@media screen and (min-width: 1200px) { + .break-1 { + display: none; + } +} + +@media screen and (min-width: 2175px) { + .break-2 { + display: none; + } +} + +.center-center { + text-align: center; + margin-right: 10px; + padding-right: 10px; + padding-bottom: 15px; + font-size: 20px; + font-weight: 600; }
\ No newline at end of file |