forked from RocketChat/docs-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
40 lines (38 loc) · 744 Bytes
/
styles.scss
File metadata and controls
40 lines (38 loc) · 744 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
40
---
---
@import "variables";
@import "layout";
// Custom data table styles...
.content table {
display: table;
width: 75%;
margin: 1rem auto;
border-top: 1px solid #bfbfbf;
border-collapse: collapse;
border-spacing: 0;
}
.content table thead th {
font-size: 18px;
line-height: 22px;
padding: 12px 9px;
font-weight: bold;
text-align: left;
vertical-align: top;
}
.content table tbody {
border-bottom: 1px solid #bfbfbf;
}
.content table tbody td {
font-size: 16px;
line-height: 22px;
padding: 12px 9px;
font-weight: normal;
text-align: left;
vertical-align: top;
}
.content table tbody tr:nth-child(odd) td {
background: #EEE;
}
.content table tbody tr:nth-child(even) td {
background: transparent;
}