aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/index.scss
diff options
context:
space:
mode:
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;
+}