summaryrefslogtreecommitdiff
path: root/src/components/rtf.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/rtf.css')
-rw-r--r--src/components/rtf.css235
1 files changed, 235 insertions, 0 deletions
diff --git a/src/components/rtf.css b/src/components/rtf.css
new file mode 100644
index 0000000..1a68f6b
--- /dev/null
+++ b/src/components/rtf.css
@@ -0,0 +1,235 @@
+/*
+ * for react-tiny-fab
+ * based on react-tiny-fab/dist/styles.css
+ */
+.rtf {
+ box-sizing: border-box;
+ margin: 25px;
+ position: fixed;
+ white-space: nowrap;
+ z-index: 9998;
+ padding-left: 0;
+ list-style: none;
+}
+.rtf.open .rtf--mb > * {
+ transform-origin: center center;
+ transform: rotate(315deg);
+ transition: ease-in-out transform 0.2s;
+}
+.rtf.open .rtf--mb > ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+.rtf.open .rtf--ab__c:hover > span {
+ transition: ease-in-out opacity 0.2s;
+ opacity: 0.9;
+}
+.rtf.open .rtf--ab__c > span.always-show {
+ transition: ease-in-out opacity 0.2s;
+ opacity: 0.9;
+}
+.rtf.open .rtf--ab__c:nth-child(1) {
+ transform: translateY(-60px) scale(1);
+ transition-delay: 0.03s;
+}
+.rtf.open .rtf--ab__c:nth-child(1).top {
+ transform: translateY(60px) scale(1);
+}
+.rtf.open .rtf--ab__c:nth-child(2) {
+ transform: translateY(-120px) scale(1);
+ transition-delay: 0.09s;
+}
+.rtf.open .rtf--ab__c:nth-child(2).top {
+ transform: translateY(120px) scale(1);
+}
+.rtf.open .rtf--ab__c:nth-child(3) {
+ transform: translateY(-180px) scale(1);
+ transition-delay: 0.12s;
+}
+.rtf.open .rtf--ab__c:nth-child(3).top {
+ transform: translateY(180px) scale(1);
+}
+.rtf.open .rtf--ab__c:nth-child(4) {
+ transform: translateY(-240px) scale(1);
+ transition-delay: 0.15s;
+}
+.rtf.open .rtf--ab__c:nth-child(4).top {
+ transform: translateY(240px) scale(1);
+}
+.rtf.open .rtf--ab__c:nth-child(5) {
+ transform: translateY(-300px) scale(1);
+ transition-delay: 0.18s;
+}
+.rtf.open .rtf--ab__c:nth-child(5).top {
+ transform: translateY(300px) scale(1);
+}
+.rtf.open .rtf--ab__c:nth-child(6) {
+ transform: translateY(-360px) scale(1);
+ transition-delay: 0.21s;
+}
+.rtf.open .rtf--ab__c:nth-child(6).top {
+ transform: translateY(360px) scale(1);
+}
+
+.rtf--mb__c {
+ padding: 25px;
+ margin: -25px;
+}
+.rtf--mb__c *:last-child {
+ margin-bottom: 0;
+}
+.rtf--mb__c:hover > span {
+ transition: ease-in-out opacity 0.2s;
+ opacity: 0.9;
+}
+.rtf--mb__c > span.always-show {
+ transition: ease-in-out opacity 0.2s;
+ opacity: 0.9;
+}
+.rtf--mb__c > span {
+ opacity: 0;
+ transition: ease-in-out opacity 0.2s;
+ position: absolute;
+ top: 50%;
+ transform: translateY(-50%);
+ margin-right: 6px;
+ margin-left: 4px;
+ background: rgba(0, 0, 0, 0.75);
+ padding: 2px 4px;
+ border-radius: 2px;
+ color: white;
+ font-size: 13px;
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
+}
+.rtf--mb__c > span.right {
+ right: 100%;
+}
+
+.rtf--mb {
+ height: 56px;
+ width: 56px;
+ z-index: 9999;
+ /* background-color: #666666; */
+ background: #387cec;
+ /* background: var(--color-btn-bg); */
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ border: none;
+ /* border: 1px solid #555; */
+ border-radius: 50%;
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
+ cursor: pointer;
+ outline: none;
+ padding: 0;
+ -webkit-user-drag: none;
+ font-weight: bold;
+ color: #f1f1f1;
+ font-size: 18px;
+}
+.rtf--mb > * {
+ transition: ease-in-out transform 0.2s;
+}
+
+.rtf--ab__c {
+ display: block;
+ position: absolute;
+ top: 0;
+ right: 1px;
+ padding: 10px 0;
+ margin: -10px 0;
+ transition: ease-in-out transform 0.2s;
+}
+.rtf--ab__c > span {
+ opacity: 0;
+ transition: ease-in-out opacity 0.2s;
+ position: absolute;
+ top: 50%;
+ transform: translateY(-50%);
+ margin-right: 6px;
+ background: rgba(0, 0, 0, 0.75);
+ padding: 2px 4px;
+ border-radius: 2px;
+ color: white;
+ font-size: 13px;
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
+}
+.rtf--ab__c > span.right {
+ right: 100%;
+}
+.rtf--ab__c:nth-child(1) {
+ transform: translateY(-60px) scale(0);
+ transition-delay: 0.21s;
+}
+.rtf--ab__c:nth-child(1).top {
+ transform: translateY(60px) scale(0);
+}
+.rtf--ab__c:nth-child(2) {
+ transform: translateY(-120px) scale(0);
+ transition-delay: 0.18s;
+}
+.rtf--ab__c:nth-child(2).top {
+ transform: translateY(120px) scale(0);
+}
+.rtf--ab__c:nth-child(3) {
+ transform: translateY(-180px) scale(0);
+ transition-delay: 0.15s;
+}
+.rtf--ab__c:nth-child(3).top {
+ transform: translateY(180px) scale(0);
+}
+.rtf--ab__c:nth-child(4) {
+ transform: translateY(-240px) scale(0);
+ transition-delay: 0.12s;
+}
+.rtf--ab__c:nth-child(4).top {
+ transform: translateY(240px) scale(0);
+}
+.rtf--ab__c:nth-child(5) {
+ transform: translateY(-300px) scale(0);
+ transition-delay: 0.09s;
+}
+.rtf--ab__c:nth-child(5).top {
+ transform: translateY(300px) scale(0);
+}
+.rtf--ab__c:nth-child(6) {
+ transform: translateY(-360px) scale(0);
+ transition-delay: 0.03s;
+}
+.rtf--ab__c:nth-child(6).top {
+ transform: translateY(360px) scale(0);
+}
+
+.rtf--ab {
+ height: 48px;
+ width: 48px;
+ background-color: #aaaaaa;
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ border: none;
+ border-radius: 50%;
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
+ cursor: pointer;
+ outline: none;
+ padding: 0;
+ -webkit-user-drag: none;
+ font-weight: bold;
+ color: #f1f1f1;
+ margin-right: 4px;
+ font-size: 16px;
+ z-index: 10000;
+}
+
+.rtf--ab:hover {
+ background: #387cec;
+ border: 1px solid #387cec;
+ color: #fff;
+}
+
+.rtf--ab:focus {
+ border-color: var(--color-focus-blue);
+}