summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorDominic DiTaranto <domdit@gmail.com>2024-08-23 23:32:26 -0400
committerDominic DiTaranto <domdit@gmail.com>2024-08-23 23:32:26 -0400
commit26ee0a64973a16584f8d51686ab357acfd526ee9 (patch)
tree38401cbf5e8d6fd05e879782b64189d9368edc1d /style.css
init commitHEADmaster
Diffstat (limited to 'style.css')
-rw-r--r--style.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..a181bc4
--- /dev/null
+++ b/style.css
@@ -0,0 +1,51 @@
+
+
+.new-sticky-button {
+ width: 100px;
+ height: 50px;
+}
+
+.sticky-note-container {
+ width: 300px;
+ background-color: PeachPuff;
+ border: solid black 1px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+
+.sticky-note-header-container {
+ height: 20px;
+ width: auto;
+ padding: 5px;
+ border-bottom: solid black 1px;
+}
+
+.sticky-note-header-text {
+ overflow: hidden;
+ float: left;
+ max-width: 80%;
+}
+
+.sticky-note-header-buttons {
+ float: right;
+}
+
+.sticky-note-body {
+ width: 278px;
+ height: 280px;
+ padding: 10px;
+ overflow: auto;
+ resize: none;
+ background-color: rgba(0, 0, 0, 0);
+ border-color: rgba(0, 0, 0, 0)
+}
+
+.buttonastext {
+ background:none;
+ border:none;
+ margin:0;
+ padding:0;
+ cursor: pointer;
+} \ No newline at end of file