-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (52 loc) · 1.49 KB
/
style.css
File metadata and controls
61 lines (52 loc) · 1.49 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
body {
display: block;
margin: 8px;
}
#cardsGrid {
overflow-x: hidden;
}
.cardCollection {
margin-left: -5px;
grid-template-columns: repeat(3, 1fr);
gap: 0px 10px;
display: grid;
}
.cardItem {
display: inline-block;
width: 120px;
margin: 0px 20px;
}
.cardQuantity {
background: #858585;
padding: 5px;
color: #ffffff;
border-radius: 10px;
text-align: center;
font-size: 12px;
width: 50px;
display: block;
margin-left: auto;
margin-right: auto;
}
.cardQuantity.notOwned {
background: #f77 !important;
}
.cardImage {
width: 124px;
text-align: center;
}
.cardImage.notOwned {
filter: grayscale(1);
}
.cardName {
text-align: center;
margin-top: 0;
}
/* Dark Theme Stuff */
body.darkTheme {background-color: #18181b;}
body.darkTheme button { border: none; background: none; color: mediumpurple; border-bottom-color: mediumpurple; border-bottom-width: 2px; border-bottom-style: solid;}
body.darkTheme input { border: none; background: none; color: mediumpurple; border-bottom-color: mediumpurple; border-bottom-width: 2px; border-bottom-style: solid;}
body.darkTheme input, body.darkTheme select, body.darkTheme textarea, body.darkTheme button{font-family:inherit;}
body.darkTheme p, body.darkTheme label, body.darkTheme h1, body.darkTheme h2 {color: white;}
body.darkTheme select {border-color: mediumpurple; border-radius: 5px; color: white; background: #18181b;}
body.darkTheme .cardQuantity {background: #303030;}