-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
79 lines (65 loc) · 1023 Bytes
/
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
body {
color: #36c4a5;
}
button, a {
background: #af6bff;
}
button:hover, a:hover {
color: white;
}
input, text {
width: 25px;
}
.btn-town-place {
background: #89cb27;
}
.btn-town-place:hover {
background: #65941d;
}
.btn-npc {
background-color: #41dff4;
}
.btn-npc:hover {
background-color: #32aebe;
}
.btn-travel {
background-color: #ACB0FF;
}
.btn-travel:hover {
background-color: #7c7fb8;
}
.btn-loot {
background: #66ffcc;
}
.btn-loot:hover {
background: #53cfa6;
}
.btn-combatCalc {
background-color: #e60000;
color: white;
}
.btn-combatCalc:hover {
background: #a50000;
}
.btn-settlement {
background-color: #ffd11a;
}
.btn-settlement:hover {
background-color: #c4a115;
}
.btn-misfortune {
background: #bbb7bd;
}
.btn-misfortune:hover {
background: #929094;
}
/* Mobile */
@media only screen and (max-width: 700px) {
.container {
width: 85%;
}
button {
font-size: 14px;
width: 60%;
}
}