-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (82 loc) · 1.49 KB
/
style.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
88
89
90
91
92
93
94
95
96
97
98
99
100
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
background-color: #e5e5fd;
min-height: 100vh;
/* border: 10px solid #1d1e4c; */
padding-top: 1px;
padding-bottom: 1px;
}
.content {
max-width: 900px;
margin: 0 auto;
}
.top_section {
margin-top: 100px;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.top_section h1 {
font-size: 23px;
font-weight: bold;
color: black;
text-transform: uppercase;
}
.top_section h4 {
font-size: 30px;
text-align: end;
}
.image_container {
border-radius: 100%;
/* overflow: hidden; */
/* overflow: visible; */
overflow: clip;
background: black;
}
.image_container,
img {
width: 300px;
height: 320px;
}
.about_section {
margin-top: 50px;
}
/* .about_section h2 {
font-size: 70px;
font-weight: 400;
margin-bottom: 20px;
} */
.about_section p {
font-size: 20px;
line-height: 30px;
letter-spacing: 1.2px;
text-align: justify;
}
.biography_section {
margin: 50px 0;
}
.biography_section h3 {
margin-bottom: 20px;
}
.biography_section ul {
margin-left: 50px;
}
.biography_section li {
margin-bottom: 15px;
}
footer {
margin: 50px 0;
}
footer p {
text-align: end;
}
@media (max-width:460px) {
.textarea_control {
grid-column: 1 / span 1;
}
}
;