-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
92 lines (80 loc) · 1.14 KB
/
style.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
85
86
87
88
89
90
91
92
html, body {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
#tags {
float: left;
min-width: 150px;
width: 10%;
background-color: black;
margin-right: 25px;
padding: 50px;
color: white;
}
#tags>p {
font-style: italic;
color: lightgray;
}
#tags a.activetag {
background-color: black;
}
#tags a {
color: white;
display: block;
padding: 10px;
border: 1px solid gray;
text-decoration: none;
font-size: 1.3em;
background-color: #333;
}
a#showAllTags {
font-weight: bold;
font-size: 2em;
}
@media (max-width: 800px) {
#tags {
float: none;
width: 100%;
height: initial;
padding: 0px;
}
#tags a {
display: inline-block;
padding: 4px;
}
}
.item {
display: inline-block;
margin: 2px;
}
.item-effect:before {
content: 'Effect: ';
color: lightgray;
}
.item-stack:before {
content: 'Each Additional: ';
color: lightgray;
}
.item-unlock {
margin-top: 20px;
}
.item-unlock:before {
content: 'Unlock: ';
color: lightgray;
}
.item {
position: relative;
cursor: pointer;
}
.item-maxstack:before {
content: 'x';
}
.item-maxstack {
position: absolute;
bottom: 0;
right: 5px;
color: white;
font: bold 15px sans-serif;
}