forked from UMD-INST377/Group-Project-Base
-
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.
Merge pull request #6 from MingC98/MingTestbranch
- Loading branch information
Showing
4 changed files
with
102 additions
and
3 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,25 @@ | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Music: Broad Horizons</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="Wrapper"> | ||
<div class='header'> | ||
<h2> INST377 group 102-01 </h2> | ||
</div> | ||
<p> | ||
This is Minghan Cai and Filip Radmanovic's final project for INST377 | ||
</p> | ||
<div class='footer'> | ||
<p>Go to <a href='index.html'>Our project's main page</a></p> | ||
<p>MingC98 <a href='https://github.com/MingC98/INST377-Lab-Work'>My Github account</a></p> | ||
<p>eniteCZ <a href='https://github.com/eniteCZ/INST377-Lab-Work'>My Github account</a></p> | ||
</div> | ||
</div> | ||
<script src="./script.js"></script> | ||
</body> | ||
</html> |
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
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,59 @@ | ||
html { | ||
background-color: rgb(130, 187, 231); | ||
font-size: 16px; | ||
min-width: 300px; | ||
overflow-x: hidden; | ||
overflow-y: scroll; | ||
|
||
/* these are specific to different browsers */ | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
text-rendering: optimizeLegibility; | ||
-webkit-text-size-adjust: 100%; | ||
-moz-text-size-adjust: 100%; | ||
text-size-adjust: 100%; | ||
} | ||
|
||
.header { | ||
font-size: 2em; | ||
margin-block-start: 0.67em; | ||
margin-block-end: 0.67em; | ||
margin-inline-start: 0px; | ||
margin-inline-end: 0px; | ||
font-weight: bold; | ||
} | ||
|
||
.header h2 { | ||
font-size: 1em; | ||
} | ||
.wrapper { | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0; | ||
flex: 10; | ||
} | ||
|
||
.box { | ||
background-color: rgba(36, 34, 163, 0.4); | ||
border: 2px dashed; | ||
border-radius: 4px; | ||
|
||
width: fit-content; | ||
height: fit-content; | ||
padding: 0.5rem; | ||
margin: 0 auto; | ||
} | ||
|
||
.search_bar { | ||
background-color: rgba(240, 248, 255, 0); | ||
height: fit-content; | ||
padding: 1.5rem; | ||
} | ||
|
||
.footer { | ||
flex-shrink: 0; | ||
padding: 1rem; | ||
font-size: 1.2rem; | ||
font-weight: 600; | ||
} |
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