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 | |
parent | 4c4b5b2572eba38e620bf45daa1804cd4e91f4f1 (diff) |
Updated the visual look and added content
-rw-r--r-- | favicon.ico | bin | 0 -> 3942 bytes | |||
-rw-r--r-- | img/computer_inside.jpg | bin | 0 -> 642244 bytes | |||
-rw-r--r-- | img/dribbble.png | bin | 2570 -> 7491 bytes | |||
-rw-r--r-- | img/experience.png | bin | 20173 -> 21569 bytes | |||
-rwxr-xr-x | img/facebook.png | bin | 1309 -> 10576 bytes | |||
-rw-r--r-- | img/gplus.png | bin | 2192 -> 7069 bytes | |||
-rwxr-xr-x | img/logo.png | bin | 5871 -> 15408 bytes | |||
-rw-r--r-- | img/proxy.jpg | bin | 0 -> 616170 bytes | |||
-rw-r--r-- | img/server_room.jpg | bin | 0 -> 107183 bytes | |||
-rw-r--r-- | img/sever_rack2.jpg | bin | 0 -> 821951 bytes | |||
-rw-r--r-- | img/switch.jpg | bin | 0 -> 265847 bytes | |||
-rwxr-xr-x | img/twitter.png | bin | 1781 -> 6591 bytes | |||
-rwxr-xr-x | index.html | 13 | ||||
-rwxr-xr-x | style.css | 47 |
14 files changed, 55 insertions, 5 deletions
diff --git a/favicon.ico b/favicon.ico Binary files differnew file mode 100644 index 0000000..bf9fa2a --- /dev/null +++ b/favicon.ico diff --git a/img/computer_inside.jpg b/img/computer_inside.jpg Binary files differnew file mode 100644 index 0000000..d3ef487 --- /dev/null +++ b/img/computer_inside.jpg diff --git a/img/dribbble.png b/img/dribbble.png Binary files differindex 479bcf5..12a7ee0 100644 --- a/img/dribbble.png +++ b/img/dribbble.png diff --git a/img/experience.png b/img/experience.png Binary files differindex 6649855..34e5baf 100644 --- a/img/experience.png +++ b/img/experience.png diff --git a/img/facebook.png b/img/facebook.png Binary files differindex 18cb37d..c100a35 100755 --- a/img/facebook.png +++ b/img/facebook.png diff --git a/img/gplus.png b/img/gplus.png Binary files differindex 3d8b132..d9b1660 100644 --- a/img/gplus.png +++ b/img/gplus.png diff --git a/img/logo.png b/img/logo.png Binary files differindex bde1511..761b808 100755 --- a/img/logo.png +++ b/img/logo.png diff --git a/img/proxy.jpg b/img/proxy.jpg Binary files differnew file mode 100644 index 0000000..f87b4b5 --- /dev/null +++ b/img/proxy.jpg diff --git a/img/server_room.jpg b/img/server_room.jpg Binary files differnew file mode 100644 index 0000000..43b5139 --- /dev/null +++ b/img/server_room.jpg diff --git a/img/sever_rack2.jpg b/img/sever_rack2.jpg Binary files differnew file mode 100644 index 0000000..3788764 --- /dev/null +++ b/img/sever_rack2.jpg diff --git a/img/switch.jpg b/img/switch.jpg Binary files differnew file mode 100644 index 0000000..82935e6 --- /dev/null +++ b/img/switch.jpg diff --git a/img/twitter.png b/img/twitter.png Binary files differindex 79b45ee..aa4a5cb 100755 --- a/img/twitter.png +++ b/img/twitter.png @@ -74,7 +74,18 @@ <img src="img/sever_rack.jpg" alt="server racks"> </div> </div> - <div id="project-list-container"></div> + <div id="project-list-container"> + <div id="latest-title"><b>Latest Projects</b></div> + <div id="menu-project"> + <nav> + <a href="#"><b>All</b></a> + <a href="#"><b>Hardware</b></a> + <a href="#"><b>Servers</b></a> + </nav> + </div> + <div><a href="#" id="view-all"><i>View All Projects</i></a></div> + <div id="latest-project-pics"><img src="img/server_room.jpg" alt="server_room"></div> + </div> <div id="review-container"></div> </body> @@ -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 |