-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (64 loc) · 1.08 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700;900&display=swap");
* {
box-sizing: border-box;
font-family: "Nunito", sans-serif;
/* outline: 1px solid black; */
}
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h1 {
display: inline-block;
}
.avatar {
height: 120px;
width: 120px;
border-radius: 50%;
}
.name {
align-self: center;
}
i {
font-size: 18px;
margin-right: 15px;
}
button {
border: 0;
background-color: rgba(0, 0, 0, 0.7);
color: white;
font-weight: 600;
margin-top: 21.44px;
padding: 10px 15px;
width: 100%;
border-radius: 16px;
}
button:hover {
background-color: black;
cursor: pointer;
}
.card {
background-color: antiquewhite;
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
border-radius: 16px;
}
.card h1 {
font-weight: 900;
}
.info {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
align-self: flex-start;
}
.info h3 {
font-weight: lighter;
}