diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 14:23:12 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 14:23:12 +0200 |
commit | 0d3739e71f969f429cb1e036d0b57ad1b52658e1 (patch) | |
tree | 38867731e5671c2ab3e8cfefdf5115c6adf58904 /frontend/src/styles | |
parent | adbd70386b4fa13c940eed643cd1b252b5243051 (diff) | |
parent | 6eb541aa0cf268c41bf8638b73bf764d717be80b (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
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 |