-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
49 lines (37 loc) · 780 Bytes
/
main.css
File metadata and controls
49 lines (37 loc) · 780 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
:root {
--main-p-font-size: 20px;
--main-icon-font-size: 40px;
--main-title-font-size:35px;
--main-title-font-weight:bold;
}
/* main */
.profile_section {
display: flex;
justify-content: center;
align-items: flex-start;
margin: 100px;
}
.profile_picture {
width: 400px;
}
.introduction {
padding-left: 60px;
}
.about_me, .stacks, .studying{
font-size: var(--main-title-font-size);
font-weight: var(--main-title-font-weight);
}
.introduction p {
font-size: var(--main-p-font-size);
}
.introduction_icon {
list-style: none;
display: flex;
justify-content:center;
padding-left: 0;
font-size: var(--main-icon-font-size);
margin: 10px 0;
}
.introduction_icon li {
padding: 8px 12px;
}