-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
96 lines (81 loc) · 1.42 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
93
94
95
96
body {
max-width: 1024px;
margin: 0 auto;
padding: 10px;
background: #111;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#paste {
position: fixed;
opacity: 0;
z-index: -1;
}
.items {
margin: 20px 0;
display: flex;
flex-flow: row wrap;
justify-content: center;
clear: both;
}
.item {
border: 2px solid white;
display: inline-block;
width: 150px;
min-height: 100px;
padding: 10px;
margin: 5px;
text-align: center;
border-radius: 5px;
word-break: break-word;
}
.item .quality {
font-size: 150%;
font-weight: bold;
display: block;
margin: 10px;
}
.item .quality.optimal {
color: #77ff77;
}
.big-label, .clear {
font-size: 150%;
font-weight: bold;
}
.clear {
color: #f00;
cursor: pointer;
float: right;
margin-left: 20px;
}
.clear.optimal {
color: #77ff77;
}
.big-label .no-quality {
color: #f00;
}
.big-label .quality {
color: #77ff77;
}
.item .delete {
font-size: 150%;
font-weight: bold;
color: #f00;
float: right;
cursor: pointer;
}
.item.magic {
border-color: #8888ff;
color: #8888ff;
}
.item.rare {
border-color: #ffff77;
color: #ffff77;
}
.item.unique {
border-color: #af6025;
color: #af6025;
}
.item.optimal {
border-color: #77ff77;
}