Services page finished. Ready for deployment

This commit is contained in:
2024-04-28 16:48:16 +01:00
parent 7d4ef4b429
commit 4d2770d003
29 changed files with 213 additions and 135 deletions

View File

@@ -8,6 +8,7 @@
#pageBody > .card:not(:first-of-type) {
}
/*
.content > a {
display: flex;

37
static/css/services.css Normal file
View File

@@ -0,0 +1,37 @@
#pageBody > .card {
padding-left: 5vw;
padding-right: 5vw;
max-width: 80vw;
}
#pageBody > .card:first-of-type{
}
#pageBody > .card:last-of-type {
padding-left: 5vw;
padding-right: 5vw;
}
#pageBody > .card:not(:first-of-type) {
}
table {
left: 5vw;
max-width: 70vw;
width: fit-content !important;
}
/*
tr th::after {
content: "";
position: absolute;
top: 65px;
left: 4%;
width: 92%;
border-bottom: 2px solid var(--c_purple_dark);
}
*/
/*
img {
max-height: 5vh;
max-width: 10vw;
}
*/

View File

@@ -51,7 +51,7 @@ h2 {
h3 {
font-size: 18px;
margin: 1vh;
margin-top: 1vh;
}
h4 {
@@ -92,7 +92,7 @@ h5 {
width: 100%;
max-height: 15vh;
font-weight: normal;
font-size: 25px;
font-size: 20px;
}
/*
.topnav a {
@@ -224,13 +224,14 @@ img, video {
/* header image */
img.header-logo {
max-height: 15vh;
max-width: 20vw;
}
/* icon images */
.img-icon {
max-width: 5vh;
max-height: 5vh;
border-radius: 1vh;
max-width: 16vh;
max-height: 8vh;
border-radius: 0;
}
.container-icon-label {
@@ -270,6 +271,7 @@ img.header-logo {
border-radius: 4vh;
/* min-width: fit-content; */
position: relative;
height: fit-content;
}
.card.subcard {
@@ -464,3 +466,8 @@ button, .btn-submit, input[type="submit"] {
margin-top: 4.5px;
margin-bottom: 4.5px;
}
li {
text-align: left;
font-size: 18px;
}

BIN
static/images/C#_NET.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
static/images/CSS3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
static/images/Firebase.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
static/images/Flask.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
static/images/HTML5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
static/images/Java.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

BIN
static/images/MVC.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
static/images/MySQL.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
static/images/Node_js.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

BIN
static/images/REST.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
static/images/React.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
static/images/python.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 KiB

5
static/js/services.js Normal file
View File

@@ -0,0 +1,5 @@
var _loading = true;
function hookupPageServices() {
_loading = false;
}

View File

@@ -59,6 +59,14 @@ function hookupNavigation() {
});
});
let btnNavServices = $(idNavServices);
initialiseEventHandler(btnNavServices, flagInitialised, function() {
btnNavServices.on("click", function(event) {
event.stopPropagation();
goToPage(hashPageServices);
});
});
let btnNavContact = $(idNavContact);
initialiseEventHandler(btnNavContact, flagInitialised, function() {
btnNavContact.on("click", function(event) {