blob: 55af60781bbd4f6d103b9b6b9b3335c6a08eb883 (
plain) (
blame)
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
|
/************ Tags ************/
body {
background-image:url('wood.png');
padding:0;
margin:0;
font-family: Segoe UI;
}
button {
color:white;
background:rgba(64,64,64,0.6);
float:left;
border: 0px;
height: 50px;
width: 150px;
margin-left: 5px;
margin-top: 5px;
font-family: Segoe UI Light;
font-size:18pt;
}
button:hover {
background:rgba(64,64,64,0.8);
}
button:active {
background:rgba(64,64,64,1);
}
button img {
vertical-align:middle;
}
button p {
vertical-align:middle;
}
/************ Classes ************/
/* Postick's button "delete" */
.delete {
cursor:pointer;
font-size:120%;
color:#000000;
}
.postick {
border:1px solid gray;
width:200px;
height:200px;
padding:4px;
font-size:85%;
background:#FFFC7F;
-moz-box-shadow:2px 2px 2px #999999;
-webkit-box-shadow:2px 2px 2px #999999;
box-shadow:2px 2px 2px #999999;
position:absolute;
}
.toolbar {
text-align:right;
font-weight:bold;
}
/* Content to be editable inside the postick */
.editable {
cursor:pointer;
height:180px;
marging:0 auto;
width:100%;
overflow:hidden;
position:relative;
-moz-text-shadow: 1px 1px 0px white;
text-shadow: 1px 1px 0px white;
color:#000000;
}
.editable:hover {
border:1px dotted gray;
}
|