-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (87 loc) · 1.91 KB
/
style.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
:root {
/* Primary Colors */
--dark-cyan: hsl(185, 75%, 39%);
--very-dark-desaturated-blue: hsl(229, 23%, 23%);
--dark-grayish-blue: hsl(227, 10%, 46%);
/* Neutral Colors */
--dark-gray: hsl(0, 0%, 59%);
/* font-family */
--font-family: "Kumbh Sans", sans-serif;
/* font size */
--fs-1-paragraph: 1.125rem;
/* font weight */
--fw-regular: 400;
--fw-bold: 700;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: var(--dark-cyan);
font-family: var(--font-family);
font-size: var(--fs-1-paragraph);
min-height: 100vh;
overflow: hidden;
display: grid;
place-items: center;
color: var(--very-dark-desaturated-blue);
background-image: url("images/bg-pattern-top.svg"), url("images/bg-pattern-bottom.svg");
background-position: right 50vw bottom 50vh, left 50vw top 50vh;
background-repeat: no-repeat;
}
main {
max-width: 90%;
}
.card {
background-color: white;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 2rem 3rem hsla(0, 0%, 0%, 0.2);
text-align: center;
}
.card__author {
margin-top: -3.5rem;
}
.card__author img {
border: 0.4rem solid white;
position: relative;
z-index: 10;
border-radius: 50%;
display: block;
margin: auto auto 1rem;
}
.card__author__name {
font-weight: var(--fw-bold);
}
.card__author__age {
color: var(--dark-grayish-blue);
}
.card__author__address {
display: block;
font-size: 1rem;
color: var(--dark-grayish-blue);
margin-top: 0.5rem;
}
.card__author__stats {
display: flex;
padding: 1.5rem 3rem;
justify-content: space-between;
}
.card__author__stats p {
font-size: var(--fs-1-paragraph);
font-weight: var(--fw-bold);
}
.card__author__stats span {
font-size: 0.7rem;
letter-spacing: 0.125rem;
color: var(--dark-gray);
display: block;
font-weight: var(--fw-regular);
}
.card hr {
color: rgba(106, 111, 129, 0.2);
margin-top: 1.5rem;
}
/*# sourceMappingURL=style.css.map */