diff options
author | crupest <crupest@outlook.com> | 2021-06-26 20:03:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-26 20:03:40 +0800 |
commit | b767c7d23d031c58c594570d55933e40065495ae (patch) | |
tree | d11d8c806ae6761cdc46056cd8a4d9051660bec2 /FrontEnd/src/index.css | |
parent | c3f17f1dd1099c244e36d09b14c3e131d703830e (diff) | |
download | timeline-b767c7d23d031c58c594570d55933e40065495ae.tar.gz timeline-b767c7d23d031c58c594570d55933e40065495ae.tar.bz2 timeline-b767c7d23d031c58c594570d55933e40065495ae.zip |
...
Diffstat (limited to 'FrontEnd/src/index.css')
-rw-r--r-- | FrontEnd/src/index.css | 41 |
1 files changed, 14 insertions, 27 deletions
diff --git a/FrontEnd/src/index.css b/FrontEnd/src/index.css index d4efabed..4adc1844 100644 --- a/FrontEnd/src/index.css +++ b/FrontEnd/src/index.css @@ -2,6 +2,8 @@ @import "bootstrap/dist/css/bootstrap-grid.css";
@import "bootstrap-icons/font/bootstrap-icons.css";
+@import "./views/common/index.css";
+
:root {
--tl-background-color: #f8f9fa;
@@ -98,18 +100,26 @@ --tl-success-r3-color: rgb(0, 243, 0);
}
-body {
- background: var(--tl-background-color);
-}
-
.tl-color-primary {
color: var(--tl-primary-color);
}
+.tl-color-secondary {
+ color: var(--tl-secondary-color);
+}
+
+.tl-color-success {
+ color: var(--tl-success-color);
+}
+
.tl-color-danger {
color: var(--tl-danger-color);
}
+body {
+ background: var(--tl-background-color);
+}
+
small {
line-height: 1.2;
}
@@ -119,21 +129,6 @@ small { flex-shrink: 0;
}
-.avatar {
- width: 60px;
- height: 60px;
-}
-
-.avatar.large {
- width: 100px;
- height: 100px;
-}
-
-.avatar.small {
- width: 40px;
- height: 40px;
-}
-
.icon-button {
font-size: 1.4rem;
cursor: pointer;
@@ -168,14 +163,6 @@ textarea { align-items: center;
}
-.text-orange {
- color: #fd7e14;
-}
-
-.text-yellow {
- color: #ffc107;
-}
-
.touch-action-none {
touch-action: none;
}
|