-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd Anime.css
84 lines (70 loc) · 1.5 KB
/
Add Anime.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* style for general tags */
.tag {
height: 20px;
width: auto;
color: white;
background-color: #FF761C;
border: 1px solid #FF761C;
border-radius: 20px;
display: inline-block;
padding: 5px 10px;
margin: 0px 5px 5px 0px;
}
.tag:hover {
cursor: default;
}
/* style for anime title/name */
.name_tag {
height: 20px;
width: auto;
color: white;
background-color: #A0A;
border: 1px solid #A0A;
border-radius: 20px;
display: inline-block;
padding: 5px 10px;
margin: 0px 5px 5px 0px;
}
.name_tag:hover {
cursor: default;
}
/* style for alternate anime names */
.alt_tag {
height: 20px;
width: auto;
color: white;
background-color: #F0F;
border: 1px solid #F0F;
border-radius: 20px;
display: inline-block;
padding: 5px 10px;
margin: 0px 5px 5px 0px;
}
.alt_tag:hover {
cursor: default;
}
/* style for anime franchise */
.franchise_tag {
height: 20px;
width: auto;
color: white;
background-color: #0A0;
border: 1px solid #0A0;
border-radius: 20px;
display: inline-block;
padding: 5px 10px;
margin: 0px 5px 5px 0px;
}
.franchise_tag:hover {
cursor: default;
}
/* style for remove button */
.remove {
color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: bolder;
padding: 0px 0px 0px 5px;
}
.remove:hover {
cursor: pointer;
}