forked from daikeren/trallo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trallo.css
57 lines (50 loc) · 906 Bytes
/
trallo.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
48
49
50
51
52
53
54
55
56
57
li {
list-style: none;
font-size: 16px;
}
li a {
float: right;
margin: 3px ;
font-size: 12px;
}
ul {
padding: 10px ;
}
h2 {
font-size: 18px ;
}
.list {
width: 300px ;
float: left;
padding: 2px 8px ;
background-color: #ddd ;
margin: 10px ;
border: 1px solid #666 ;
border-radius: 7px ;
}
.card {
cursor: move;
border-radius: 3px ;
border: 1px solid #666 ;
margin: 5px ;
padding: 4px ;
word-wrap: break-word;
background-color: white;
}
.card:hover {
-webkit-transform:rotate(2deg);
-o-transform:rotate(2deg);
-ms-transform:rotate(2deg);
-moz-transform:rotate(2deg);
transform:rotate(2deg);
}
.ui-state-highlight {
width: 300px ;
height: 300px ;
float: left;
padding: 2px 8px ;
background-color: #999 ;
margin: 10px ;
border: 1px solid #666 ;
border-radius: 7px ;
}