-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnwcompat.css
61 lines (51 loc) · 1019 Bytes
/
nwcompat.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
.chromori_achievement_area {
z-index: 9999;
user-select: none;
position: absolute;
bottom: 0;
right: 0;
overflow-y: hidden;
}
.chromori_achievement {
width: 283px;
height: 70px;
animation: 5s linear 0s 1 slideInFromBottom;
background: linear-gradient(#23262e, #0e141b);
}
.chromori_achievement_text {
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
}
.chromori_achievement_text > div {
font-size: 12px;
font-family: Helvetica;
}
.chromori_achievement_name {
color: #ededee;
}
.chromori_achievement_desc {
color: #646b72;
}
@keyframes slideInFromBottom {
0% {
transform: translateY(100%);
}
5% {
transform: translateY(0%);
}
95% {
transform: translateY(0%);
}
100% {
transform: translateY(100%);
}
}
.chromori_achievement_icon {
width: 44px;
height: 44px;
float: left;
margin: 13px 16px 13px 10px;
background-size: cover;
}