-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstickynotes.css
47 lines (44 loc) · 939 Bytes
/
stickynotes.css
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
.whiteboard-wrapper .note-text {
margin: 0px;
padding: 1px 5px;
font-size: 18pt;
overflow: hidden;
line-height: 90%;
word-wrap: break-word;
}
.whiteboard-wrapper textarea {
display: none;
position: fixed;
background-color: transparent;
border: 0px;
margin: 0px;
padding: 1px 5px;
font-size: 18pt;
font-family: sans-serif;
overflow: hidden;
line-height: 90%;
word-wrap: break-word;
resize: none;
}
.whiteboard-wrapper #editor {
font-family: sans-serif;
}
.whiteboard-wrapper .note {
position: fixed;
width: 100px;
height: 100px;
-webkit-box-shadow: 1px 1px 5px #aaaaaa;
-moz-box-shadow: 1px 1px 5px #aaaaaa;
box-shadow: 1px 1px 5px #aaaaaa;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
margin: 0px;
padding: 1px 5px;
font-size: 18pt;
overflow: hidden;
line-height: 90%;
word-wrap: break-word;
}