-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameSales.css
More file actions
137 lines (114 loc) · 2.09 KB
/
Copy pathgameSales.css
File metadata and controls
137 lines (114 loc) · 2.09 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
133
134
135
136
body {
background-color: #f2f2f2;
margin: 20px;
font-family: 'Cormorant Garamond';
}
.banner {
background-color: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
height: 30px;
}
.banner a {
color: white;
text-decoration: none;
margin-left: 20px;
}
.tool-links {
display: flex;
justify-content: flex-start;
align-items: center;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown .dropdown-content {
display: none;
position: absolute;
background-color: black;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
color: black;
}
.input-container {
margin-bottom: 10px;
font-weight: bold;
}
.file-input-container {
display: flex;
flex-direction: column;
margin-top: 10px;
}
input[type="number"] {
border: none;
background-color: white;
padding: 5px;
border-radius: 5px;
}
#confirm-btn{
background-color: #e0e0e0;
color: black;
padding: 5px 10px;
border: none;
border-radius: 5px;
margin-top: 10px;
width: 100px;
font-family: 'Cormorant Garamond';
font-weight: bold;
font-size: 18px;
}
#confirm-btn:hover {
background-color: #d0d0d0;
cursor: pointer;
}
.filter {
display: flex;
flex-direction: row;
align-items: center;
}
.filter p {
margin-right: 10px;
font-family: 'Cormorant Garamond';
font-weight: bold;
}
.filter select {
margin-right: 5px;
font-family: 'Cormorant Garamond';
font-weight: bold;
font-size: 16px;
}
/* table style */
#table {
border-collapse: collapse;
width: 100%;
margin-top: 20px;
font-family: 'Cormorant Garamond';
font-weight: bold;
}
#table th, #table td {
border: 1px solid #ffffff;
padding: 8px;
text-align: left;
}
#table th {
background-color: #ffffff;
font-weight: bold;
}
#table tr:hover {
background-color: #ddd;
}