Skip to content

Commit

Permalink
css changes, validation, look of site
Browse files Browse the repository at this point in the history
  • Loading branch information
darrencc1 committed Mar 25, 2024
1 parent b600508 commit 430cb0f
Showing 1 changed file with 60 additions and 6 deletions.
66 changes: 60 additions & 6 deletions home-network-security/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,37 @@ header {
background-color: #000000;
font-family: "Kode Mono", monospace;
display: grid;
grid-column: 4 / 9;
grid-column: 2 / 11;
grid-row: 1 / 2;
place-items: center;
place-items: center;
padding: 25px 25px;

}
header a {
text-align: center;
color: #a120e2;
color: #ffffff;
text-decoration: none;
font-family: "Kode Mono", monospace;
text-decoration: underline;
font-size: 25px;
text-shadow:6px 6px 12px #b01e1e;
}
nav a {
text-align: center;
color: #ffffff;
text-decoration: none;
padding: 35px;
/* background-color: #504848; */
text-shadow:6px 6px 12px #b01e1e;
}
nav {
text-align: center;
display: flex;
justify-content: space-around;
text-shadow:6px 6px 12px #b01e1e;
}
nav a:hover{
background-color:#a7c3d3;
background-color:#3d0e64;
}


Expand All @@ -36,12 +50,22 @@ footer {
grid-row: 11 / 12;
place-items: center;
}
footer a {
text-align: center;
color: #ffffff;
text-decoration: none;
font-family: "Kode Mono", monospace;
font-size: 25px;
text-shadow:6px 6px 12px #b01e1e;

}

.home-title {
background-color:#000000;
text-align:center;
color: #b01e1e;
font-family: "Kode Mono", monospace;
text-shadow:1px 1px 2px #ffffff ;
}

.intro-section {
Expand All @@ -53,15 +77,35 @@ footer {
background-color: black;
color: azure;
}
.logo {
max-width: 200px;
width: 100%;
display: block;
margin: 0 auto;
box-shadow: 0 100px 200px #b01e1e;
border-radius: 40px;
}


.security-img {
max-width: 100%;
}

border: 5px solid #9234c1;
transition: transform .5s;
box-shadow: 10px 10px 20px #b01e1e;

}
.security-img:hover, .password-table:hover {
opacity: .6;
transform: scale(1.1);
}

.passwords {
background-color:#000000;
text-align:center;
color: #b01e1e;
font-family:"Kode Mono", monospace;
text-shadow:1px 1px 2px #ffffff ;

}

Expand All @@ -76,7 +120,10 @@ footer {
}

.password-table {
max-width: 50%;
max-width: 100%;
border: 5px solid #9234c1;
transition: transform .5s;
box-shadow: 10px 10px 20px #b01e1e;
}

.content-2 p {
Expand Down Expand Up @@ -127,3 +174,10 @@ footer {
content: counter(list-counter) ". "; /* Display the counter */
font-weight: bold; /* Make the counter bold */
}

p {


background-image: linear-gradient(to bottom right, rgb(67, 1, 1), rgb(119, 9, 9));
padding: 4px 4px;
}

0 comments on commit 430cb0f

Please sign in to comment.