-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvo_table.css
58 lines (44 loc) · 836 Bytes
/
vo_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
@charset "utf-8";
/*
Style Sheet for pricing table on the vo_pricing page.
Author: Kyle Marler
Date: 4.20.22
Filename: vo_table.css
*/
main {
width: 100%;
}
table {
width: 100%;
border: 1px solid rgb(81, 80, 80);
border-collapse: collapse;
margin-top: 50px;
margin-bottom: 60px;
table-layout: fixed;
}
table th, table td {
border: 1px solid rgb(81, 80, 80);
word-wrap: break-word;
text-align: center;
}
table td {
height: 20px;
}
table th {
text-align: center;
height: 50px;
background-color: rgb(219, 232, 212);
}
tr.empty {
color: transparent;
}
td:not(tr.empty > td) {
background-color: rgb(237, 235, 206);
}
caption {
font-size: 0.8em;
caption-side: bottom;
text-align: left;
margin-top: 15px;
padding-left: 15px;
}