Skip to content

Commit

Permalink
webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
he-yilan committed Feb 14, 2024
1 parent e388a72 commit 52e7008
Show file tree
Hide file tree
Showing 24 changed files with 632 additions and 6 deletions.
Binary file added hw1/.DS_Store
Binary file not shown.
59 changes: 59 additions & 0 deletions hw1/competition.svg
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 hw1/images/competition.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 hw1/images/image1.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 hw1/images/image2.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 hw1/images/image3.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 hw1/images/image4.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 hw1/images/task2_sr1.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 hw1/images/task2_sr16.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 hw1/images/task2_sr4.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 hw1/images/task3_myrobot.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 hw1/images/task4.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 hw1/images/task4_triangle.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 hw1/images/task5_bilinear_sr1-4.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 hw1/images/task5_bilinear_sr16-4.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 hw1/images/task5_nearest_sr1-4.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 hw1/images/task5_nearest_sr16-4.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 hw1/images/task6_l0_plinear.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 hw1/images/task6_l0_pnearest.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 hw1/images/task6_lnearest_plinear.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 hw1/images/task6_lnearest_pnearest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
349 changes: 343 additions & 6 deletions hw1/index.html

Large diffs are not rendered by default.

87 changes: 87 additions & 0 deletions hw1/my_robot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
143 changes: 143 additions & 0 deletions hw1/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
html {
scroll-behavior: smooth;
}

body {
width: 100%;
margin: 0;
font-family: Roboto, Sans-Serif;
/* color: #ececec; */
background-color: white;
}

.menu {
width: 100%;
}

.submenu {
margin: 84px 10% 30px 10%;
font-size: 18px;
}

.pagebreak {
height: 100vh;
}

.content-item {
padding-top: 15px;
}

.header {
text-align: center;
font-size: 28px;
font-weight: bold;
margin-bottom: 10px;
}

.subheader {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}

.center {
text-align: center;
}

.code {
font-family: monospace;
}

a.anchor {
display: block;
position: relative;
top: -80px;
visibility: hidden;
}

.submenu ul {
line-height: 1.35;
}

.menu {
position: fixed;
top: 0;
}

.menu button {
border: none;
background-color: transparent;
outline: none;
}

.menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #343434;
position: relative;
font-weight: 300;
height: 60px;
}

.menu li:not(.rightlogo) {
float: left;
}

.menu .nonlogo {
margin: 0;
-ms-transform: translateY(15%);
transform: translateY(15%);
}

.menu li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition: 0.5s;
/* font-weight: bold; */
}

.menu .logo a:hover {
background-color: #8f00c3;
}

.menu .nonlogo a:hover {
transition: 0.5s;
background-color: #8f00c3;
padding: 14px 25px;
}

.menu .rightlogo {
float: right;
padding-top: 0px;
padding-bottom: 5px;
padding-right: 8px;
}

.menu .rightlogo a:hover {
background-color: #8f00c3;
}

#param-table {
width: 100%;
}

.single-image {
width: 80%;
max-width: 600px;
min-width: 100px;
}

@media print {
.menu, .menu * {
display: none !important;
}

.content-item {
page-break-after: always;
}
}

0 comments on commit 52e7008

Please sign in to comment.