diff options
author | crupest <crupest@outlook.com> | 2020-06-04 16:11:03 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-04 16:11:03 +0800 |
commit | ae19c40c795e14e8793744b7520e103523f6bda4 (patch) | |
tree | 0c8e94645a4d1c72e0daaf422aa9e745da092a68 /Timeline/ClientApp/src/index.sass | |
parent | 5fc36fd7f7dbaa19ae4e8cc3f180ef5d57fc1cf6 (diff) | |
download | timeline-ae19c40c795e14e8793744b7520e103523f6bda4.tar.gz timeline-ae19c40c795e14e8793744b7520e103523f6bda4.tar.bz2 timeline-ae19c40c795e14e8793744b7520e103523f6bda4.zip |
refactor(front): Refactor scss to sass and refactor timeline styles.
Diffstat (limited to 'Timeline/ClientApp/src/index.sass')
-rw-r--r-- | Timeline/ClientApp/src/index.sass | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/index.sass b/Timeline/ClientApp/src/index.sass new file mode 100644 index 00000000..b5fcc112 --- /dev/null +++ b/Timeline/ClientApp/src/index.sass @@ -0,0 +1,72 @@ +@import '~bootstrap/scss/bootstrap' +$fa-font-path: '~@fortawesome/fontawesome-free/webfonts' +@import '~@fortawesome/fontawesome-free/scss/fontawesome' +@import '~@fortawesome/fontawesome-free/scss/solid' +@import '~@fortawesome/fontawesome-free/scss/brands' + +@import './common/common' +@import './common/alert' +@import './home/home' +@import './about/about' +@import './timeline/timeline' +@import './timeline/timeline-ui' +@import './user/user-page' + +body + margin: 0 + +#app + display: flex + flex-direction: column + +small + line-height: 1.2 + +.width-1px + width: 1px + +.flex-fix-length + flex-grow: 0 + flex-shrink: 0 + +.position-lt + left: 0 + top: 0 + +.position-rb + right: 0 + bottom: 0 + +.app-bar + z-index: 1035 + +.avatar + width: 60px + +.avatar.large + width: 100px + +.avatar.small + width: 40px + +.mt-appbar + margin-top: 56px + +.icon-button + font-size: 20px + +.large-icon + font-size: 26px + +textarea + resize: none + +.white-space-no-wrap + white-space: nowrap + +.cru-card + @extend .shadow + @extend .border + @extend .border-primary + @extend .rounded + @extend .bg-light |