blob: 07454ca665602fe1217ad11d03a9ade0cd1e2e57 (
plain) (
blame)
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
|
#about {
overflow: auto;
overflow-x: hidden;
position: relative;
width: calc(100% - 380px);
height: 100vh;
left: 350px;
padding-right: 30px;
font-size: 24px;
font-family: BarlowSemiCondensed-Regular;
color: #cdcfdf;
}
h1 {
font-size: 80px;
}
h2 {
font-size: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
#about {
width: calc(100% - 340px);
left: 310px;
padding-right: 25px;
font-size: 22px;
}
h1 {
font-size: 68px;
}
h2 {
font-size: 52px;
}
}
@media screen and (max-width: 768px) {
#about {
width: 100%;
left: 0;
padding: 70px 20px 20px 20px;
height: calc(100vh - 60px);
font-size: 18px;
}
h1 {
font-size: 48px;
}
h2 {
font-size: 36px;
}
}
|