-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e646e7
commit 8ee7ca2
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |