-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (52 loc) · 806 Bytes
/
Copy pathstyle.css
File metadata and controls
64 lines (52 loc) · 806 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
html, body {
height: 100%;
}
/* colors */
:root {
--color-male: rgb(0, 174, 255);
--color-female: pink;
}
/* utils */
.mb-0 {
margin-bottom: 0;
}
.my-0 {
margin-top: 0;
margin-bottom: 0;
}
img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 5px solid teal;
}
img.male {
border: 5px solid var(--color-male);
}
img.female {
border: 5px solid var(--color-female);
}
#app {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
button {
border: none;
cursor: pointer;
padding: 10px 15px;
color: whitesmoke;
background: transparent;
}
p.gender {
text-transform: capitalize;
}
button.male {
background: var(--color-male);
}
button.female {
background: var(--color-female);
color: black;
}