-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
68 lines (56 loc) · 791 Bytes
/
app.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
body {
font-family: sans-serif;
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
sup, sub {
vertical-align: baseline;
position: relative;
top: -0.4em;
}
sub {
top: 0.4em;
}
.familytree-node {
z-index: 1;
}
.card {
margin: 0 auto;
background: white;
padding: 40px;
border-top: 14px solid black;
position: relative;
}
.card.male {
border-top-color: blue;
}
.card.female {
border-top-color: pink;
}
.card > :first-child {
margin-top: 0;
margin-bottom: 40px;
font-size: 2em;
}
.source-ref {
position: absolute;
top: 10px;
right: 14px;
}
.action-bar:before {
content: ' | ';
}
.card li {
line-height: 1.7;
}
@media (min-width: 840px) {
body {
padding-top: 80px;
}
.card {
width: 600px;
box-shadow: 0 9px 24px #aaa;
}
}