-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.css
45 lines (38 loc) · 1.09 KB
/
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
:root {
--me-color: #FF00FF;
}
@import "style.css"
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
body {margin:0; font-size:13px; font-style:normal; line-height:18px; font-family:'Source Sans Pro', sans-serif; background: #F2F2F2; color:#000000;}
h3 {text-transform:lowercase; font-size:16px;}
h3::before{content: "_"; color: var(--me-color);}
a {color:var(--me-color);text-decoration:none;}
a:hover {text-decoration:underline;}
h4 {text-transform:lowercase; font-size:12px;}
h5 {text-transform:lowercase; font-size:14px; margin-top: 6px; font-weight:bold;}
table {
margin: 0 auto;
width: 80%;
text-align: left;
border-collapse: collapse;
border: 1px solid var(--me-color);
height: 500px;
}
tr:nth-child(even) {
background: #fff
}
th, td {
padding: 10px 30px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
border-bottom: 1px solid var(--me-color);
font-style:bold;
text-transform:uppercase;
font-size: 16px;
}
tr td:first-child {
font-style:italic;
width: 40%;
}