Skip to content

Commit

Permalink
Merge pull request #1 from liu9756/branch1
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
liu9756 authored Oct 29, 2023
2 parents 9035892 + 855681b commit daafd20
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
Binary file added JS.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
@charset "UTF-8";
/* styles.css */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background: url('background-image.jpg') no-repeat center center fixed;
background-size: cover;
}

header {
position: absolute;
top: 0;
width: 100%;
padding: 1em 0;
display: flex;
justify-content: center;
background-color: rgba(255, 255, 255, 0.8);
}

nav ul {
list-style: none;
display: flex;
}

nav ul li {
margin: 0 15px;
}

nav ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s ease;
}

nav ul li a:hover {
color: #0077cc;
}

.button-container {
display: flex;
flex-direction: column;
}

.custom-button {
display: inline-block;
padding: 10px 20px;
margin: 5px 0;
background-color: #0077cc;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.custom-button:hover {
background-color: #005fa3;
}

0 comments on commit daafd20

Please sign in to comment.