-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmajor.css
120 lines (98 loc) · 1.63 KB
/
major.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
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
body {
background-color: #333;
/* background-color: #bbb; */
color: white;
/* font-family: 'Courier New', Courier, monospace; */
font-family: Arial, Helvetica, sans-serif;
text-align: center;
--uno-green: rgb(11, 127, 36);
--uno-yellow: rgb(237, 198, 55);
--uno-red: rgb(206, 0, 17);
--uno-blue: rgb(0, 70, 148);
}
.unoDeck .card.clubs .cardNumber {
color: lime
}
.unoDeck .card.diamonds .cardNumber {
color: var(--uno-yellow)
}
.unoDeck .card.hearts .cardNumber {
color: coral
}
.unoDeck .card.spades .cardNumber {
color: lightskyblue
}
#root {
display: inline-block;
text-align: left;
min-width: min(800px, 80vw);
padding-top: 80px;
margin: auto;
}
[id^="grid"] {
display: flex;
margin-bottom: 60px;
max-width: 80vw;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
}
.gridPair {
/* flex-grow: 1; */
display: flex;
}
.gridPair:last-child {
opacity: 0
}
.column {
display: flex;
flex-direction: column;
}
.cardDeck .column:nth-child(2n) {
margin-right: 50px;
}
.cell {
padding: 8px 12px 0px;
height: 1.25rem;
width: 130px;
}
.card {
color: white;
}
.suitsymbol {
display: none;
}
.cardDeck .suitsymbol {
display: inline-block;
text-align: center;
width: 20px;
font-family: initial;
}
.missing,
.cardDeck .notcard {
color: lightcoral;
color: coral;
color: #888
}
.strength5 {
color: rgb(238, 255, 238)
}
.strength3 {
color: #ccc
}
.strength2 {
color: #bbb
}
.strength2 {
color: #999
}
#freeCharactersTable {
border-collapse: collapse;
}
.freeCharacter td {
padding: 4px;
border: white solid 1px;
}
#freeCharactersDiv {
padding: 20px
}