-
Notifications
You must be signed in to change notification settings - Fork 10
/
style.css
69 lines (60 loc) · 1.22 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
body {
background-color: black;
background-image: url("assets/data/aBGUI2.png");
background-repeat: no-repeat;
background-size: cover;
}
.talent-window {
border-style: double;
background-color: lightslategrey;
position: absolute;
right: 8px;
top: 20px;
width: 404px;
height: 800px;
padding-bottom: 8px;
display: flex;
flex-wrap: wrap;
overflow-y: scroll;
}
.talent-display {
border-style: double;
background-color: lightslategray;
position: relative;
left: 1134px;
top: 12px;
width: 100px;
height: 60px;
font-weight: bold;
font-size: 24px;
}
.talent-class {
background: no-repeat center center;
width: 56px;
height: 56px;
background-repeat: no-repeat;
}
#talent-window > * {
margin: 4px;
margin-top: 8px;
margin-bottom: 8px;
}
input.talent {
background-image: url("assets/data/UISkillLv.png");
background-color: transparent;
border: none;
outline: none;
width: 40px;
height: 14px;
text-align: center;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}