-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
132 lines (122 loc) · 2.18 KB
/
styles.css
File metadata and controls
132 lines (122 loc) · 2.18 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
124
125
126
127
128
129
130
131
132
body {
font-family: Arial, sans-serif;
background-color: #e3f1f1;
color: #5a3e50;
}
.player-lists {
display: grid;
grid-template-columns: auto auto auto;
justify-content: space-between;
margin-bottom: 20px;
}
@media (max-width: 500px) {
.list {
grid-column-start: 1;
grid-column-end: 3;
}
.inner {
flex-direction: column !important;
}
}
.list {
border: 1px solid #ddd;
padding: 10px;
box-sizing: border-box; /* Ensures padding does not affect overall width */
min-height: 400px; /* Set a minimum height to prevent layout shifting */
}
.deck {
justify-content: center;
margin: 0 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
overflow-x: auto;
}
.table-container {
overflow-x: auto;
width: 100%;
}
td,
th {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
width: calc(
100% / 10
); /* Fixed width for each cell to prevent layout shift */
height: 50px;
word-wrap: break-word;
}
.active-player {
margin-bottom: 20px;
text-align: center;
}
.chilling {
background-color: aliceblue;
}
.goTime {
background-color: rgb(255, 202, 202);
}
.card {
width: 100px;
height: 150px;
border: 1px solid #5a3e50;
border-radius: 5px;
margin: 10px auto;
background-color: white;
}
#rulesList {
text-align: left;
border: #ddd 1px solid;
}
.flexCenter {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
li > p {
margin: 0 !important;
}
li > h4 {
margin: 4px !important;
}
@keyframes shimmer {
0% {
background-position: -200px 0;
}
100% {
background-position: 0px 0;
}
}
.specialCard {
background-image: linear-gradient(90deg, #f7e9ff 25%, 75%, #e1f9ff);
background-size: 400px 100%;
border: 1px solid #ffc2f7;
animation: shimmer 2s infinite linear alternate;
}
.flexRow {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
align-items: flex-start;
}
th {
background-color: rgb(255, 202, 202);
}
.filled {
background-color: #f7e9ff;
}
button {
color: #5a3e50;
background-color: aliceblue;
border: 4px solid #5a3e50;
border-radius: 5px;
}
ol > li {
font-size: large;
margin: 5px;
}