aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css/About.css
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/css/About.css')
-rw-r--r--frontend/src/css/About.css23
1 files changed, 20 insertions, 3 deletions
diff --git a/frontend/src/css/About.css b/frontend/src/css/About.css
index d4fdf07..c29e0bc 100644
--- a/frontend/src/css/About.css
+++ b/frontend/src/css/About.css
@@ -3,7 +3,7 @@
3 overflow-x: hidden; 3 overflow-x: hidden;
4 position: relative; 4 position: relative;
5 5
6 width: calc(100% - 380px); 6 width: calc(100% - 380px);
7 height: 100vh; 7 height: 100vh;
8 left: 350px; 8 left: 350px;
9 9
@@ -16,10 +16,27 @@
16} 16}
17 17
18h1 { 18h1 {
19 font-size: 80px; 19 font-size: 80px;
20} 20}
21 21
22h2 { 22h2 {
23 font-size: 60px; 23 font-size: 60px;
24} 24}
25 25
26@media screen and (max-width: 768px) {
27 #about {
28 width: 100%;
29 left: 0;
30 padding: 70px 20px 20px 20px;
31 height: calc(100vh - 60px);
32 font-size: 18px;
33 }
34
35 h1 {
36 font-size: 48px;
37 }
38
39 h2 {
40 font-size: 36px;
41 }
42} \ No newline at end of file