Skip to content

Commit

Permalink
hw9
Browse files Browse the repository at this point in the history
  • Loading branch information
criispyumii committed Apr 12, 2024
1 parent 2f6e812 commit 374aeb6
Show file tree
Hide file tree
Showing 12 changed files with 421 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified assignments/.DS_Store
Binary file not shown.
Binary file added assignments/hw9/.DS_Store
Binary file not shown.
Binary file added assignments/hw9/assets/.DS_Store
Binary file not shown.
Binary file added assignments/hw9/assets/images/logo.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 assignments/hw9/assets/images/q2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
263 changes: 263 additions & 0 deletions assignments/hw9/assets/styles/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
/* @import url('https://fonts.googleapis.com/css?family=Karla');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); */


body {
margin: 0px;
background-color: #f7f5f2;
padding: 60px;
font-family: 'Karla';
font-smoothing: antialiased;
}

* {
font-family: Karla;
}

a {
color: inherit;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

img {
border: 1px solid rgba(0,0,0,0.1);
}

.img-scaled {
width: 100%;
}

.img-scaled-wh {
width: 100%;
height: 100%:
}

.clear {
clear: both;
}

* {
outline: none;
}

#data {
display: none;
}

.tag {
color: #6392c0;
}

.element {
color: #de6868;
}

#container {
width: 720px;
margin: 0px auto;
background: white;
box-shadow: 0px 0px 5px #edeae5;
border-radius: 2px;
position: relative;
padding: 30px 0px;
}
#header {
background: #78c272;
padding: 15px;
color: white;
width: 270px;
}
#header-caption-logo {
width: 20px;
float: left;
}
#header-caption-name {
float: left;
margin-left: 5px;
font-size: 12px;
font-weight: 700;
line-height: 15px;
}
#header-caption {
margin-bottom: 6px;
opacity: 0.6;
}
#header-title {
font-size: 18px;
font-weight: 300;
float: left;
}
#header-due {
float: left;
font-size: 18px;
font-weight: 300;
margin-left: 10px;
padding-left: 10px;
border-left: 2px solid rgba(255, 255, 255, 0.15);
}
.section {
margin: 30px 0px;
padding: 0px 30px;
font-family: 'Lato';
}
#submission-header, .info-title, .code-header {
text-align: left;
color: #78c272;
font-size: 24px;
font-weight: 700;
margin-bottom: 15px;
}
#submission-content, .info-content, .code-content {
padding: 15px;
background: rgba(120, 194, 114, 0.1);
border-radius: 2px;
color: #4c5765;
}
.info-required {
font-size: 13px;
font-weight: 700;
opacity: 0.75;
margin-bottom: 10px;
}
.info-intro {
line-height: 24px;
font-size: 16px;
opacity: 0.75;
}
.info {
margin-bottom: 30px;
}
.body-header {
font-size: 24px;
font-weight: 700;
color: #78c272;
}
.body h1 {
font-size: 16px;
line-height: 24px;
}
.body p {
line-height: 24px;
}
.body img {
width: 100%;
}
.body a {
color: #78c272;
}
.body li {
line-height: 24px;
}
.body {
color: #4c5765;
}
.body .caption {
opacity: 0.6;
}
#submission {
padding: 0px 30px;
}

.indent {
text-indent: 30px;
}

code, .code {
font-family: 'Roboto Mono', monospace;
line-height: 24px;
font-size: 0.8em;
background: #f3f3f3;
padding: 2px;
}

#submission-content p, #submission-content li {
line-height: 24px;
opacity: 0.75;
}

#announcement-heading {
text-align: left;
color: #de6868;
font-weight: 700;
font-size: 24px;
margin-bottom: 15px;
}
#announcement-content {
padding: 15px;
background: rgba(222, 104, 104, 0.1);
color: #4c5765;
font-size: 12px;
line-height: 24px;
border-radius: 2px;
}

#no-top {
border-top: none;
}

#no-bottom {
border-bottom: none;
}

.download {
box-shadow: 0 1px 2px rgba(0,0,0,0.12);
background: #78c272;
color: white;
width: 240px;
text-align: center;
padding: 15px 0px;
border-radius: 2px;
font-size: 13px;
font-weight: 700;
margin: 30px auto;
cursor: pointer;
transition: 0.2s;
}

.download:hover {
opacity: 0.8;
box-shadow: 0 2px 4px rgba(0,0,0,0.16);
}
#announcement .link {
background: #de6868;
width: 320px;
font-size: 13px;
font-weight: 700;
color: white;
text-align: center;
padding: 15px 0px;
margin: 30px auto;
border-radius: 2px;
cursor: pointer;
}
.question {
box-shadow: 0 1px 2px rgba(0,0,0,0.12);
background: white;
padding: 18px;
font-size: 12px;
margin-bottom: 6px;
border-radius: 2px;
text-align: center;
font-weight: 700;
color: #4a4a4a;
cursor: pointer;
transition: 0.2s;
}

.question:hover {
opacity: 0.8;
box-shadow: 0 2px 4px rgba(0,0,0,0.16);
}


#index {
width: 240px;
position: absolute;
left: calc(50% - 120px);
top: calc(50% - 206px);
}
Binary file added assignments/hw9/assets/videos/q1.mov
Binary file not shown.
Binary file added assignments/hw9/assets/videos/q2.mov
Binary file not shown.
Binary file added assignments/hw9/hw9-starter.zip
Binary file not shown.
Loading

0 comments on commit 374aeb6

Please sign in to comment.