forked from phpcoinn/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.css
More file actions
39 lines (34 loc) · 704 Bytes
/
docs.css
File metadata and controls
39 lines (34 loc) · 704 Bytes
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
/*
* Documentation Table Styles
*/
/* General table styling */
table {
width: 100%;
border-collapse: collapse; /* Cleaner borders */
margin: 1.5em 0;
font-size: 1rem;
box-shadow: 0 2px 3px rgba(0,0,0,0.1);
border: 1px solid #ddd;
}
/* Table header styling */
th {
background-color: #5156be; /* A primary color from the site */
color: #ffffff;
padding: 12px 15px;
text-align: left;
font-weight: 600;
border-bottom: 2px solid #404496;
}
/* Table cell styling */
td {
padding: 12px 15px;
border: 1px solid #ddd;
}
/* Zebra-striping for table rows */
tr:nth-child(even) {
background-color: #f9f9f9;
}
/* Hover effect for rows */
tr:hover {
background-color: #f1f1f1;
}