diff options
author | 2020-11-16 00:10:28 +0100 | |
---|---|---|
committer | 2020-11-16 00:10:28 +0100 | |
commit | e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch) | |
tree | 55713f725f77b44ebfec86e4eec3ce33e71458ca /client/src/admin/scss | |
download | website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2 website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip |
api, login, auth
Diffstat (limited to 'client/src/admin/scss')
-rw-r--r-- | client/src/admin/scss/_mainScreen.scss | 30 | ||||
-rw-r--r-- | client/src/admin/scss/index.scss | 8 |
2 files changed, 38 insertions, 0 deletions
diff --git a/client/src/admin/scss/_mainScreen.scss b/client/src/admin/scss/_mainScreen.scss new file mode 100644 index 0000000..4eec73a --- /dev/null +++ b/client/src/admin/scss/_mainScreen.scss @@ -0,0 +1,30 @@ +.main-screen { + text-align: center; + + &__header { + display: block; + margin-top: 10vh; + margin-bottom: 20vh; + font-size: 300%; + color: white; + text-align: center; + } + + &__list { + display: inline-block; + } + + &__item { + font-size: 175%; + color: white; + transition: color .3s; + cursor: pointer; + margin-top: 5vh; + margin-bottom: 5vh; + + &:hover { + color: $text-selected; + } + } + +} diff --git a/client/src/admin/scss/index.scss b/client/src/admin/scss/index.scss new file mode 100644 index 0000000..67553bb --- /dev/null +++ b/client/src/admin/scss/index.scss @@ -0,0 +1,8 @@ +@import '../../common/scss/reset'; +@import '../../common/scss/colors'; +@import '../../common/scss/globals'; +@import '../../common/scss/forms'; +@import '../../common/scss/main'; +@import '../../common/scss/info'; +@import '../../common/scss/topBar'; +@import 'mainScreen'; |