-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
87 lines (66 loc) · 1.21 KB
/
main.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#victor{
font-weight: 700;
}
.color{
color:hsl(0, 0%, 59%);
}
body{
font-family: 'Kumbh Sans', sans-serif;
font-size: 18px;
font-weight: 400;
}
.body{
background-image: url(./doc_images/bg-pattern-top.svg);
background-repeat: no-repeat;
background-color: hsl(185, 75%, 39%);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
background-color:hsl(0, 0%, 100%);
text-align: center;
width: 350px;
border-radius: 15px;
overflow: hidden;
}
.upper{
height: 150px;
width: 350px;
background: url(./doc_images/bg-pattern-card.svg);
background-size: cover;
}
#img{
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
margin: -50px;
border: 7px solid white;
}
.lower-name{
color: hsl(0, 0%, 59%);
}
.intro-one{
margin-top: 54px;
height: 250px;
margin-bottom: -75px;
line-height: 28px;
}
.activities{
padding-top: 22px;
padding-right: 40px;
border-top: 1px solid hsl(0, 0%, 59%);
padding-left: 40px;
margin-top: 23px;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
}