forked from YahtzeeMaster26/ordinal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (92 loc) · 1.97 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (92 loc) · 1.97 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
:root {
--tabAmount: 1;
--textColor: black;
--buttonBg: #e4e8eb;
--darkButtonBg: #c0c4c8;
--darkerButtonBg: #b0b4b8;
--weNeedToGoDarker: #606462;
--bgColour: #f0f0f0;
--wuantumTheme: #3f70be;
--wuantumThemeLight: #7f98c2;
--wuantumThemeDark: #1e427c;
--wuantumThemeGreen: #3fd5c7;
}
.tab {
width: calc(100% / var(--tabAmount));
height: 30px;
text-align: center;
border: 2px solid var(--textColor);
border-right: 0px solid var(--textColor);
border-radius: 5px 5px 0 0;
display: inline-block;
position: relative;
outline: none;
margin: 0;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
}
::-webkit-scrollbar {
height: 0px;
}
::-webkit-scrollbar-track {
background: var(--bgColour);
}
::-webkit-scrollbar-thumb {
background: var(--darkButtonBg);
border-radius: 100px;
}
::-webkit-scrollbar-thumb:active {
background: var(--weNeedToGoDarker);
}
button {
background-color: var(--buttonBg);
border: 2px solid var(--textColor);
border-radius: 7px;
font-family: 'Inter', sans-serif;
}
.funniBorder td {
border-bottom: 1px solid var(--textColor);
border-right: 1px solid var(--textColor);
width: 40%;
}
.microtransaction {
height: 150px;
width: 200px;
display: inline-block;
}
.automator {
display: inline-block;
border: 1px solid var(--textColor);
border-radius: 3px;
margin: 5px;
padding: 5px;
}
#multTable td {
width: 30%;
}
#wuantumUpgs td {
transition-duration: 0.15s;
width: 200px;
height: 120px;
border: 3px solid var(--textColor);
text-align: center;
}
#wuantumUpgs td:not(.wtmUpgBuyable):not(.wtmUpgBought) {
background-color: var(--darkButtonBg);
}
#wuantumUpgs td:hover:not(.wtmUpgBuyable):not(.wtmUpgBought) {
background-color: var(--buttonBg);
}
.wtmUpgBuyable {
background-color: var(--wuantumTheme);
color: var(--bgColour);
}
.wtmUpgBuyable:hover {
background-color: var(--wuantumThemeLight);
color: var(--textColor);
}
.wtmUpgBought {
background-color: var(--wuantumThemeGreen);
}