Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Our App</title>
<link rel="stylesheet" href="style/main.css">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=width-device, initial-scale=1.0">
</head>
<body>
Expand Down Expand Up @@ -34,7 +34,7 @@ <h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tem

<!-- main -->
<main>
<h1>Services</h1>
<h1 id="h">Services</h1>
<!-- box of services -->


Expand Down
125 changes: 125 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
header{
background-image: url("images/HeaderBackground1920x1280.jpg");
height: 100vh;
}
.content-header ul{
display: flex;
flex-direction: row;
justify-content:center;
justify-content: flex-end;
flex-wrap: wrap;
}

.content-header ul > li {
margin: 20px;
}

a {
color: white;
}

li {
list-style-type: none;
}

.content-header {
padding: 10px;
display: flex;
flex-direction: row;

display: grid;
grid-template-columns: 2fr 5fr;
}
#logo{
color: rgb(230, 67, 94);

}
#h{

color: slategray;
display: grid;
grid-column: 1/-1;
}
main{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr;
gap: 10px;
}




.introduction{
color: white;
display: grid;
grid-template-columns: 50%;
grid-template-rows: 60px 150px;
grid-column: auto;
margin-left: 400px;
margin-top: 100px;

font-size: 20px;

}
.introduction h1{
color: white;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
margin: 10px;
}

@media only screen and (max-width: 600px) {

header{
background-image: url("images/HeaderBackground1920x1280.jpg");
width: 400px;
height: 500px;
}
.content-header{
display: flex;
flex-direction: column;
justify-content: center;
}
.content-header ul{
display: flex;
flex-direction: column;
align-items: center;
color: aliceblue;

}
#logo{
color: rgb(230, 67, 94);
display: flex;
flex-direction: row;
justify-content: flex-start;
}

.introduction{
color: white;
padding: 20px;
}
.part-services{
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;

}
#h{
display: flex;
flex-direction: column;
align-items: center;
color: slategray;
}

main{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

}