-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp-table.css
72 lines (62 loc) · 980 Bytes
/
php-table.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
.table-container {
margin: 0 0 20px 0;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
padding: 20px;
}
table {
width: 100%;
border-collapse: collapse;
}
table td,
table th {
padding: 11px 9px;
border: 1px solid #f1b26e;
text-align: center;
font-size: 13px;
}
table th {
background-color: #ea9234;
}
h1 {
display: none;
}
.input-container {
display: flex;
justify-content: center;
align-items: center;
}
#searchInput {
width: 50%;
padding: 8px;
font-size: 12px;
border: 1px solid #ccc;
border-radius: 6px;
margin-top: 10px;
background-color: #000;
color: #fff;
}
@media (max-width: 810px) {
body {
overflow-x: hidden;
}
table {
width: fit-content;
}
}
@media (max-width: 350px) {
h1 {
margin-top: 20px;
margin: 10px;
display: block;
color: red;
text-align: center;
font-size: 16px;
}
.input-container,
.table-container {
display: none;
}
}