diff options
author | FivePixels <o5pxels@gmail.com> | 2022-03-11 17:05:36 -0600 |
---|---|---|
committer | FivePixels <o5pxels@gmail.com> | 2022-03-11 17:09:51 -0600 |
commit | 1a779ff55b0f9a88430894494e6fbfd47a6b3259 (patch) | |
tree | a3cde0390bb87e84c556d8e3b26fb1ee2b54648a /assets/css | |
parent | da790b92a2d36f77b30bd20d7490b4b797eacff9 (diff) | |
download | personal-website-1a779ff55b0f9a88430894494e6fbfd47a6b3259.tar.xz personal-website-1a779ff55b0f9a88430894494e6fbfd47a6b3259.zip |
Add resume, remove Twitter from navbar, add catego
ries to projects, change headers to account for new categories, add git
server to navbar, remove content of About Me for rewrite, update intro
on homepage
remove pdf because bad
Diffstat (limited to 'assets/css')
-rw-r--r-- | assets/css/main.css | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 5de4372..aafc550 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -59,12 +59,16 @@ ul#nav li { margin: 1.5em; width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */ text-align: center; /* If you want the text to be centered */ + white-space: nowrap; } p#position { font-size: 16px; } +p#resume { +} + body#home { max-width: 570px; } @@ -89,44 +93,48 @@ p, ul { font-family: 'Source Sans Pro'; } +section#resume h1:after { + content: ' // Dylan Bolger'; + color: #d3d3d3; +} section#intro h1:after { - content: ' // Dylan Bolger'; + content: ' // FivePixels'; color: #d3d3d3; } -div.project.streamfinder h2:after { +div.project.streamfinder h3:after { font-style: normal; content: ' // Node.js, Angular, MongoDB, Puppeteer'; font-size: 0.82em; color: #d3d3d3; } -div.project.js h2:after { +div.project.js h3:after { font-style: normal; content: ' // JavaScript'; color: #d3d3d3; } -div.project.css h2:after { +div.project.css h3:after { font-style: normal; content: ' /* CSS */'; color: #d3d3d3; } -div.project.htmlcss h2:after { +div.project.htmlcss h3:after { font-style: normal; content: ' <!-- HTML and CSS -->'; color: #d3d3d3; } -div.project.swift h2:after { +div.project.swift h3:after { font-style: normal; content: ' // Swift'; color: #d3d3d3; } -div.project.objc h2:after { +div.project.objc h3:after { font-style: normal; content: ' // Objective-C'; color: #d3d3d3; |