blob: a181bc46207e85335918dc1a745f3d2b70787975 (
plain)
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
|
.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;
}
|