-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (119 loc) · 1.72 KB
/
style.css
File metadata and controls
121 lines (119 loc) · 1.72 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #d6d3d3;
}
.bean-container {
position: relative;
width: 100px;
height: 150px;
}
.bean {
width: 50px;
height: 80px;
border-radius: 50%;
background-color: gray;
position: absolute;
top: 40px;
left: 25px;
}
.hands,
.legs {
position: absolute;
background-color: black;
border-radius: 50%;
}
.small-hands,
.medium-hands,
.large-hands {
top: 50px;
}
.small-hands {
width: 15px;
height: 15px;
}
.medium-hands {
width: 25px;
height: 25px;
}
.large-hands {
width: 35px;
height: 35px;
}
.left-hand {
left: -20px;
}
.right-hand {
right: -20px;
}
.small-legs,
.medium-legs,
.large-legs {
bottom: -10px;
}
.small-legs {
width: 15px;
height: 15px;
}
.medium-legs {
width: 25px;
height: 25px;
}
.large-legs {
width: 35px;
height: 35px;
}
.left-leg {
left: 15px;
}
.right-leg {
right: 15px;
}
.head {
width: 70px;
height: 70px;
border-radius: 50%;
background-color: gray;
position: absolute;
top: 1vb;
left: 2vb;
}
.pedigree-tree {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.generationContainer {
display: flex;
justify-content: center;
margin-top: 10px;
}
.generationContainer button {
margin: 0 5px;
padding: 5px 10px;
font-size: 12px;
cursor: pointer;
}
.new {
background-color: #04aa6d;
border: none;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
}
.beanButton {
background-color: #00a8c2;
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
}