forked from gueamu/jquery-tumblr-tags-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tumblertags.css
69 lines (61 loc) · 1.12 KB
/
tumblertags.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
58
59
60
61
62
63
64
65
66
67
68
69
body {
background: #111;
font: 12px/18px Helvetica, Arial, sans-serif;
}
label {
font: bold italic 1.6em Times, 'Times New Roman', serif;
font-size: 16px;
text-transform: lowercase;
color: #333;
padding: .4em 0;
}
input:focus {
outline: none;
}
.tag-editor {
background: #eee;
-webkit-border-radius: 3px;
padding: 10px;
}
.tag-editor label { display: block; }
.tag-editor input {
border: none;
background: none;
padding: .2em 0;
width: 50px;
float: left;
}
.tag-editor .tags-container {
background: white;
-webkit-border-radius: 3px;
padding: 3px;
margin: 0;
width: 200px;
}
.tag-editor span {
background: #eee;
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
-webkit-border-radius: 2px;
margin: 0 .4em .4em 0;
padding: 0 .2em 0 .4em;
display: block;
float: left;
}
.tag-editor span a {
-webkit-border-radius: 2px;
background: #333;
padding: 0 .4em;
color: white;
text-decoration: none;
margin-left: .4em;
}
.tag-editor span a:hover {
color: #ccc;
}
.tag-editor span a:active {
color: white;
}
.visualClear {
clear: both;
}