-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3about.css
57 lines (52 loc) · 773 Bytes
/
3about.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
.about {
display: flex;
flex-direction: column;
gap: 1rem;
}
.about-paragraph {
text-align: justify;
}
.about-pfp {
text-align: center;
}
.about-pfp img {
height: 14rem;
width: 14rem;
border-radius: 50%;
border: 2px solid white;
box-shadow: 0px 0px 16px 2px;
}
#about-tagline {
font-weight: 300;
color: var(white);
}
/* xs */
@media (min-width: 475px) {
}
/* sm */
@media (min-width: 640px) {
}
/* md */
@media (min-width: 768px) {
}
/* lg */
@media (min-width: 1024px) {
.about {
display: flex;
flex-direction: row;
gap: 1rem;
}
.about-paragraph {
margin-left: 4rem;
margin-right: 4rem;
}
.about-pfp {
margin-right: 4rem;
}
}
/* xl */
@media (min-width: 1280px) {
}
/* 2xl */
@media (min-width: 1536px) {
}