-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (78 loc) · 1.45 KB
/
style.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
/* Basic reset */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Body and table container */
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f7f8fa;
}
.table-container {
width: 90%;
max-width: 1200px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow-x: auto;
padding: 20px;
}
.table-titles {
width: 100%;
max-width: 1200px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow-x: auto;
padding: 16px;
}
/* Table styling */
table {
width: 100%;
border-collapse: collapse;
}
/* Table headers */
th {
padding: 12px 16px;
text-align: left;
background-color: #e9ecef;
font-weight: 600;
color: #495057;
font-size: 0.9rem;
text-transform: uppercase;
}
/* Table rows */
tr {
border-bottom: 1px solid #e9ecef;
}
/* Table cells */
td {
padding: 12px 16px;
color: #343a40;
font-size: 0.9rem;
vertical-align: top;
}
/* Even row styling */
tr:nth-child(even) {
background-color: #f8f9fa;
}
/* Styling for links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Responsive layout */
@media (max-width: 768px) {
th, td, h1, h3 {
padding: 10px;
font-size: 0.85rem;
}
}