aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/index.scss
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-05-30 23:41:31 +0800
committerGitHub <noreply@github.com>2020-05-30 23:41:31 +0800
commitc8d71a3b5e7aef4fcf75bad44b7be90b45aaaf0b (patch)
treef76ecd77c99c4136d1ab4771b91a92f1e5ad4a35 /Timeline/ClientApp/src/index.scss
parent7e393559d2883a37b1be0c82cccc06bc97c3d102 (diff)
parent83de798e74323e96e81b8196b04e23ed2bd4efbf (diff)
downloadtimeline-c8d71a3b5e7aef4fcf75bad44b7be90b45aaaf0b.tar.gz
timeline-c8d71a3b5e7aef4fcf75bad44b7be90b45aaaf0b.tar.bz2
timeline-c8d71a3b5e7aef4fcf75bad44b7be90b45aaaf0b.zip
Merge pull request #72 from crupest/merge-frontend
Merge frontend repo into this repo.
Diffstat (limited to 'Timeline/ClientApp/src/index.scss')
-rw-r--r--Timeline/ClientApp/src/index.scss89
1 files changed, 89 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/index.scss b/Timeline/ClientApp/src/index.scss
new file mode 100644
index 00000000..9f3d3444
--- /dev/null
+++ b/Timeline/ClientApp/src/index.scss
@@ -0,0 +1,89 @@
+@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.scss';
+@import './common/alert.scss';
+@import './home/home.scss';
+@import './about/about.scss';
+@import './timeline/timeline.scss';
+@import './timeline/timeline-ui.scss';
+@import './user/user-page.scss';
+
+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;
+}