Spaces:
Runtime error
Runtime error
File size: 3,318 Bytes
92ff906 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
#spam-checker--input {
padding: 1rem;
width: 100%;
min-height: 100%;
transition: all 0.625s cubic-bezier(0, 0, 0.2, 1);
}
#spam-checker--textarea {
border-color: transparent;
outline: none;
padding: 0;
margin: 0;
}
.hwt-container {
display: block;
position: relative;
overflow: hidden !important;
-webkit-text-size-adjust: none !important;
}
.hwt-backdrop {
position: absolute !important;
top: 0 !important;
right: -99px !important;
bottom: 0 !important;
left: 0 !important;
padding-right: 99px !important;
overflow-x: hidden !important;
overflow-y: auto !important;
}
.hwt-highlights {
width: auto !important;
height: auto !important;
border-color: transparent !important;
white-space: pre-wrap !important;
word-wrap: break-word !important;
color: transparent !important;
overflow: hidden !important;
}
.hwt-input {
display: block !important;
position: relative !important;
margin: 0;
padding: 0;
border-radius: 0;
font: inherit;
overflow-x: hidden !important;
overflow-y: auto !important;
}
.hwt-content {
border: 1px solid;
background: none transparent !important;
}
.hwt-content mark {
padding: 0 !important;
color: inherit;
border-radius: 0.25rem;
}
.hwt-content mark.spam-category-shady {
background-color: #6c5e03; /* pink-300 */
}
.hwt-content mark.spam-category-money {
background-color: #6d0374; /* yellow-300 */
}
.hwt-content mark.spam-category-urgency {
background-color: #a50505; /* red-400 */
}
.hwt-content mark.spam-category-overpromise {
background-color: #1d7103; /* orange-300 */
}
.hwt-content mark.spam-category-unnatural {
background-color: #0648ad; /* grey-300 */
}
#spam-checker--aside li.spam-category-shady {
border-radius: 3;
border-left: 3px solid pink; /* pink-300 */
}
#spam-checker--aside li.spam-category-money {
border-radius: 3;
border-left: 3px solid #6a0263; /* yellow-300 */
}
#spam-checker--aside li.spam-category-urgency {
border-radius: 3;
border-left: 3px solid #f87171; /* red-400 */
}
#spam-checker--aside li.spam-category-overpromise {
border-radius: 3;
border-left: 3px solid #fdba74; /* orange-300 */
}
#spam-checker--aside li.spam-category-unnatural {
border-radius: 3;
border-left: 3px solid #d1d5db; /* grey-300 */
}
#spam-checker--aside {
padding: 1rem 0.5rem;
}
#spam-checker--aside table {
width: 100%;
margin-bottom: 1rem;
}
#spam-checker--aside table td:first-child {
color: #64748b;
}
#spam-checker--aside table td:last-child {
text-align: right;
font-weight: 600;
}
#spam-checker--aside table td:last-child .text-poor {
color: #e11d48;
}
#spam-checker--aside table td:last-child .text-okay {
color: #2563eb;
}
#spam-checker--aside table td:last-child .text-great {
color: #16a34a;
}
#spam-checker--aside ul,
#spam-checker--aside ol {
list-style: none;
margin: 0;
padding: 0;
}
#spam-checker--aside li {
margin: 0.5rem 0;
padding: 0.75rem;
border-radius: 0.25rem;
background-color: #fff;
box-shadow: 0px 4px 24px rgba(4, 20, 58, 0.04);
}
|