diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2025-10-22 01:52:05 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 00:52:05 +0300 |
| commit | b1fd0cdeff287e4cf0ec180ff9fee804cb2c8b8d (patch) | |
| tree | bd3a114b2ad3e3b69d86940b1c787a0ace4c89d2 /frontend/src/css/About.css | |
| parent | feat/backend: add newrelic integration (#274) (diff) | |
| download | lphub-b1fd0cdeff287e4cf0ec180ff9fee804cb2c8b8d.tar.gz lphub-b1fd0cdeff287e4cf0ec180ff9fee804cb2c8b8d.tar.bz2 lphub-b1fd0cdeff287e4cf0ec180ff9fee804cb2c8b8d.zip | |
feat/frontend: add general mobile support (#275)
Diffstat (limited to 'frontend/src/css/About.css')
| -rw-r--r-- | frontend/src/css/About.css | 23 |
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 | ||
| 18 | h1 { | 18 | h1 { |
| 19 | font-size: 80px; | 19 | font-size: 80px; |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | h2 { | 22 | h2 { |
| 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 | ||