diff options
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/Navbar.css | 34 | ||||
| -rw-r--r-- | src/styles/index.css | 38 |
2 files changed, 72 insertions, 0 deletions
diff --git a/src/styles/Navbar.css b/src/styles/Navbar.css new file mode 100644 index 0000000..8c239e0 --- /dev/null +++ b/src/styles/Navbar.css @@ -0,0 +1,34 @@ +nav { + font-weight: 300; + padding-top: 2vh; + padding-bottom: 4.5vh; +} +ul.nav-list { + list-style-type: none; + margin: 0; + padding: 0; + display: flex; + flex-direction: row; + justify-content: center; +} + +li.nav-links { + margin: 0 1rem; +} + + +a.nav-link { + font-size: 1.2rem; + text-decoration: none; + color: #FFFFFF; +} + +a.nav-link:hover { + font-weight: 500; + color: #9ECD9D; + transition: ease-in-out 0.1s; +} + +a.nav-link:active { + color: #609460; +} diff --git a/src/styles/index.css b/src/styles/index.css new file mode 100644 index 0000000..ddc1fc6 --- /dev/null +++ b/src/styles/index.css @@ -0,0 +1,38 @@ +.home { + text-align: center; +} + +.avatar { + border-radius: 20%; +} + +h1 { + font-weight: 500; + font-size: 4vh; +} + +h2 { + font-weight: 500; + font-size: 2.5vh; +} + +.description { + line-height: 0.4; +} + +h3 { + font-weight: 300; + font-size: 1.2rem; +} + +.social { + display: flex; + flex-direction: row; + justify-content: center; + font-size: 6vh; + gap: 7vh; +} + +.social-links { + color: #FFFFFF; +} |
