diff options
| author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-05-14 11:35:49 +0200 |
|---|---|---|
| committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-05-14 11:35:49 +0200 |
| commit | 79c86a86c0c5d4e5a293c7f9b68e58bce1ad524f (patch) | |
| tree | 83c5123cf6a8c088702f5f94984287b61daaf0e6 /style.css | |
| parent | 4c4b5b2572eba38e620bf45daa1804cd4e91f4f1 (diff) | |
| download | adjutech-79c86a86c0c5d4e5a293c7f9b68e58bce1ad524f.tar.gz adjutech-79c86a86c0c5d4e5a293c7f9b68e58bce1ad524f.tar.bz2 adjutech-79c86a86c0c5d4e5a293c7f9b68e58bce1ad524f.zip | |
Updated the visual look and added content
Diffstat (limited to '')
| -rwxr-xr-x | style.css | 47 |
1 files changed, 43 insertions, 4 deletions
@@ -1,3 +1,8 @@ +body { + background-color: #040217; + color: #ccccff; +} + header{ display: flex; justify-content: space-between; @@ -10,7 +15,7 @@ header{ } #contacts{ - display: flex; + display: none; } #contacts p{ @@ -29,7 +34,14 @@ header{ height: 2px; margin-bottom: 5px; position: relative; - background: black; + background: white; +} + +@media screen and (min-width: 750px) { + #contacts { + display: flex; + align-items: center; + } } /* Slideshow container */ @@ -41,14 +53,14 @@ header{ /* Caption text */ .text { - color: black; + color: #ccccff; font-size: 150%; padding: 8px 12px; position: absolute; bottom: 8px; width: 100%; text-align: center; - background-color: white; + background-color: #040217; } /* The dots/bullets/indicators */ @@ -100,4 +112,31 @@ header{ #picture img{ height: 100%; width: 100%; +} + +@media screen and (min-width: 1000px) { + #desc-and-pic-container{ + flex-wrap: initial; + } + #picture img{ + padding-top: 10px; + } +} + +#project-list-container{ + display: flex; + flex-wrap: wrap; + justify-content: space-around; + align-items: center; + padding-top: 10px; +} + +#project-list-container a { + color: white; + text-decoration: none; +} + +#latest-project-pics img{ + height: 100%; + width: 100%; }
\ No newline at end of file |
