-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (73 loc) · 1.24 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
77
78
79
80
81
82
83
84
85
86
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
height: 100vh;
background-color: #F2E8DA;
}
h1 {
font-family: 'Noto Serif', serif;
font-size: 52px;
line-height: 60px;
width: 425px;
position: relative;
top: 32px;
}
hr {
background-color: #000000;
}
img {
width: 359px;
height: 418px;
object-fit: cover;
border-radius: 200px 200px 0px 0px;
}
.container {
width: 1280px;
max-width: 100%;
margin: 0 auto;
padding: 0 20px;
}
.main_wrapper {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 30px 0;
}
.social_media a {
font-family: 'Noto Serif', serif;
font-size: 52px;
line-height: 60px;
color: #000000;
text-decoration: none;
margin: 0 95px;
position: relative;
bottom: 32px;
}
.header_wrapper {
display: flex;
justify-content: space-between;
padding: 30px 0 20px;
}
.header_wrapper > * {
flex-basis: 33.3%;
}
.name {
text-align: center;
}
.langs {
text-align: right;
}
.location {
font-weight: 700;
}
.langs a {
font-weight: 700;
color: #000000;
text-decoration: none;
margin-left: 10px;
}