Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Potato-constellation authored Jun 4, 2024
1 parent 6e646e7 commit 8ee7ca2
Showing 1 changed file with 103 additions and 0 deletions.
103 changes: 103 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #09C8FE;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
html{background-color:#000000;
font-family:sans-serif;}
.topnav a.active {
background-color: #04AA6D;
color: #09C8FE;
}
p{color: #09C8FE}
a:link {
color: #09C8FE;
background-color: transparent;
text-decoration: none;
}

a:visited {
color: #09C8FE;
background-color: transparent;
text-decoration: none;
}

a:hover {
color: #09C8FE;
background-color: transparent;
text-decoration: underline;
}

a:active {
color: #09C8FE;
background-color: transparent;
text-decoration: underline;
}
.topnav input[type=text] {
float: right;
padding: 14px 16px;
border: none;
margin-top: 8px;
margin-right: 16px;
font-size: 17px;
}
.button {
background-color: #000000;
border: none;
color: #000000;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.btn {
border: none;
background-color: black;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
display: inline-block;
}

/* On mouse-over */
.btn:hover {background: #09C8FE;}

body{
color: #09C8FE
}
.search-form {
display: flex;
justify-content: center;
align-items: center;
}

.search-input {
padding: 8px;
border-radius: 4px 0 0 4px;
border: 1px solid #ccc;
font-size: 16px;
width: 200px;
}

.search-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 8px 16px;
border-radius: 0 4px 4px 0;
font-size: 16px;
cursor: pointer;
}

0 comments on commit 8ee7ca2

Please sign in to comment.