-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.css
58 lines (50 loc) · 928 Bytes
/
demo.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
ul {
font-family: sans-serif;
list-style: none;
margin: 0;
padding: 0;
}
.listify {
border: 1px solid #333;
margin-bottom: 24px;
overflow: hidden;
padding: 2px 2px 0 2px;
width: 460px;
-moz-border-radius: 16px;
}
.listify li {
background-color: #333;
color: #fff;
float: left;
margin-bottom: 2px;
margin-right: 4px;
padding: 2px 2px 2px 8px;
-moz-border-radius: 16px;
}
.listify li.delete {
opacity: .5;
}
.listify li a {
background-color: #fff;
color: #c00;
float: right;
font-weight: bold;
margin-left: 8px;
text-align: center;
text-decoration: none;
width: 20px;
-moz-border-radius: 16px;
}
.listify li a:hover {
background-color: #c00;
color: #fff;
}
.listify li.input {
background-color: transparent;
}
.listify input {
border: none;
display: block;
margin: 0;
padding: 1px 0;
}