Skip to content

Commit

Permalink
Revert "fix format. add camera ready"
Browse files Browse the repository at this point in the history
This reverts commit 692f491.
  • Loading branch information
Linyi Jin committed Mar 13, 2024
1 parent 81470f4 commit 9dc0a8f
Show file tree
Hide file tree
Showing 8 changed files with 275 additions and 165 deletions.
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

Binary file removed 3dfires.pdf
Binary file not shown.
Binary file added html_src/.DS_Store
Binary file not shown.
4 changes: 0 additions & 4 deletions html_src/demo-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
text-align: center; /* Centers the text */
font-weight: 500;
margin: 0;
font-size: 25px;
}

.block {
Expand Down Expand Up @@ -134,6 +133,3 @@ model-viewer {
.view4 {
border:4px solid #76ab2f;
}
.all {
border:4px solid #ffffff00;
}
Binary file added html_src/pure_grey.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 removed html_src/transparent.png
Binary file not shown.
124 changes: 124 additions & 0 deletions html_src/website.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 18px;
margin-left: auto;
margin-right: auto;
width: 80%;
}

h1 {
font-weight: 300;
}

button.external-link.button.is-normal.is-rounded.is-dark {
padding: 5px 10px; /* Adjust padding to make buttons smaller */
margin: 10px; /* Add more margin to create space between buttons */
font-size: 0.8em; /* Optional: Adjust font size if needed */
}

#exampleList {
text-align: center; /* Keep the buttons centered in the div */
}

#exampleList button {
margin: 5px; /* This creates a gap between buttons */
}


.disclaimerbox {
background-color: #eee;
border: 1px solid #eeeeee;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: 20px;
}

video.header-vid {
height: 140px;
border: 1px solid black;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

img.header-img {
height: 140px;
border: 1px solid black;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

img.rounded {
border: 1px solid #eeeeee;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

a:link,
a:visited {
color: #1367a7;
text-decoration: none;
}

a:hover {
color: #208799;
}

td.dl-link {
height: 160px;
text-align: center;
font-size: 22px;
}

.layered-paper-big {
/* modified from: http://css-tricks.com/snippets/css/layered-paper/ */
box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.35), /* The top layer shadow */
5px 5px 0 0px #fff, /* The second layer */
5px 5px 1px 1px rgba(0, 0, 0, 0.35), /* The second layer shadow */
10px 10px 0 0px #fff, /* The third layer */
10px 10px 1px 1px rgba(0, 0, 0, 0.35), /* The third layer shadow */
15px 15px 0 0px #fff, /* The fourth layer */
15px 15px 1px 1px rgba(0, 0, 0, 0.35), /* The fourth layer shadow */
20px 20px 0 0px #fff, /* The fifth layer */
20px 20px 1px 1px rgba(0, 0, 0, 0.35), /* The fifth layer shadow */
25px 25px 0 0px #fff, /* The fifth layer */
25px 25px 1px 1px rgba(0, 0, 0, 0.35);
/* The fifth layer shadow */
margin-left: 10px;
margin-right: 45px;
}

.layered-paper {
/* modified from: http://css-tricks.com/snippets/css/layered-paper/ */
box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.35), /* The top layer shadow */
5px 5px 0 0px #fff, /* The second layer */
5px 5px 1px 1px rgba(0, 0, 0, 0.35), /* The second layer shadow */
10px 10px 0 0px #fff, /* The third layer */
10px 10px 1px 1px rgba(0, 0, 0, 0.35);
/* The third layer shadow */
margin-top: 5px;
margin-left: 10px;
margin-right: 30px;
margin-bottom: 5px;
}

.vert-cent {
position: relative;
top: 50%;
transform: translateY(-50%);
}

hr {
border: 0;
height: 1.5px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

p.abstract {
text-align: left;
width: 80%;
}
Loading

0 comments on commit 9dc0a8f

Please sign in to comment.