This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathmain.css
More file actions
93 lines (79 loc) · 1.37 KB
/
main.css
File metadata and controls
93 lines (79 loc) · 1.37 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
* {
font-family: 'Quicksand', sans-serif;
}
.logo {
width: 17px;
height: 17px;
background-color: #0150FD;
border: 1px solid;
margin-left: 50px;
margin-right: 10px;
}
.custom-nav {
display: flex;
align-items: center;
font-size: 18px;
}
.nav-items--left {
font-size: 22px;
}
.nav-items--right {
display: flex;
margin-left: auto;
}
.nav-link {
margin-right: 50px;
}
.name {
font-family: 'Poppins', sans-serif;
font-size: 30px;
}
main {
background-color: antiquewhite;
margin-top: 6rem;
margin-bottom: 6rem;
display: flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
}
.info-section {
width: 25rem;
height: 35rem;
display: flex;
flex-direction: column;
justify-content: center;
}
.picture-section {
background-color: #f4ece6;
margin-right: 3rem;
width: 36rem;
height: 35rem;
border: 1px solid grey;
display: flex;
flex-direction: column;
align-items: center;
}
#profile-image {
width: 8rem;
height: 8rem;
border-radius: 50%;
margin-top: 2rem;
}
#person-name {
font-size: 1.8rem;
font-weight: bolder;
}
#person-job {
font-size: 1.8rem;
margin-bottom: 8rem;
}
.footer-icons img {
width: 2rem;
height: 2rem;
}
footer {
display: flex;
margin-left: 4rem;
margin-top: 5rem;
}