-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSticky_Notes.css
More file actions
63 lines (52 loc) · 1.14 KB
/
Sticky_Notes.css
File metadata and controls
63 lines (52 loc) · 1.14 KB
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
body {
margin:0;
padding: 0;
background-color: #dbdbdb;
font-size: 100%;
font-family: cursive;
}
h1{
text-align: center;
}
form{
text-align: center;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
form input#note_text {
width: 350px;
}
ul#stickies li {
display: block;
list-style: none;
z-index: 1;
float: left;
margin: 30px;
padding: 15px 15px 50px 15px;
width: 140px;
height: 140px;
border: 1px solid #bfbfbf;
background-color: #fafad2;
color: black;
text-decoration: none;
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
-webkit-transition: all 0.5s ease-in;
overflow: hidden;
}
ul#stickies li span.sticky {
font-family: Verdana, Helvetica, sans-serif;
font-size: 140%;
}
ul#stickies li:nth-child(even) {
-webkit-transform: rotate(2deg);
}
ul#stickies li:nth-child(odd) {
-webkit-transform: rotate(-1deg);
}
ul#stickies li:nth-child(3n) {
-webkit-transform: rotate(1deg);
}
ul#stickies li:hover {
-webkit-box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.4);
-webkit-transform: rotate(0deg) scale(1.25);
z-index: 10;
}