-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (97 loc) · 1.81 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container {
background-color: #e5e5fd;
border: 10px solid #1d1e4c;
min-height: 100vh;
padding: 20px;
}
.content {
max-width: 900px;
margin: 0 auto;
}
.top_section {
margin-top: 100px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
text-align: center;
}
.image_container, img {
width: 100%;
max-width: 300px;
height: auto;
border-radius: 50%;
margin-bottom: 20px;
}
.top_section h1 {
font-size: 2.5em;
color: #1d1e4c;
text-transform: uppercase;
font-weight: bold;
margin-bottom: 10px;
}
.top_section h4 {
font-size: 1.5em;
text-align: center;
}
.about_section {
margin-top: 50px;
}
.about_section h2 {
font-size: 2.5em;
font-weight: 400;
margin-bottom: 20px;
text-align: center;
}
.about_section p {
font-size: 1.25em;
line-height: 1.6em;
letter-spacing: 1px;
}
.biography_section {
margin: 50px 0;
}
.biography_section h3 {
margin-bottom: 20px;
text-align: center;
}
.biography_section ul {
margin-left: 20px;
}
.biography_section li {
margin-bottom: 15px;
font-size: 1em;
}
footer {
text-align: center;
margin-bottom: 50px;
}
footer p {
font-size: 1em;
}
@media (min-width: 600px) {
.top_section {
flex-wrap: nowrap;
text-align: left;
}
.image_container, img {
margin-bottom: 0;
}
.top_section h4 {
text-align: end;
}
.about_section h2 {
text-align: left;
}
.biography_section h3 {
text-align: left;
}
footer p {
text-align: right;
}
}