-
Notifications
You must be signed in to change notification settings - Fork 3
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 #50 from BYU-PCCL/staging
added cmas-snowglobe
- Loading branch information
Showing
8 changed files
with
83 additions
and
0 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,9 @@ | ||
{ | ||
"id": "cmas-snowglobe", | ||
"type": "web", | ||
"title": "Christmas cheer", | ||
"description": "Have a wonderful Christmas!", | ||
"layout": "full", | ||
"lifetime": 240, | ||
"queueable": true | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Merry Christmas!</title> | ||
<link rel="stylesheet" href="./style.css" /> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="video-container"> | ||
<video width="2736px" autoplay muted loop><source src="snowglobe.mov" type="video/mp4"></video> | ||
</div> | ||
|
||
<div id=mc></div> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
|
||
html { | ||
width: 2736px; | ||
height: 1216px; | ||
background: #444444; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
width: 2736px; | ||
height: 1216px; | ||
background: #444444; | ||
|
||
} | ||
|
||
div#shift { | ||
width: 2736px; | ||
height: 1216px; | ||
position: absolute; | ||
left:0px; | ||
top:-200px; | ||
} | ||
|
||
div#mc { | ||
position: absolute; | ||
left:1350px; | ||
top:0px; | ||
width:1200px; | ||
height:1200px; | ||
background-size: 1200px 1200px; | ||
background-image: url("mc2.png"); | ||
} | ||
|
||
.video-container { | ||
height: 1216px; | ||
width: 2736px; | ||
overflow: hidden; | ||
position: absolute; | ||
} | ||
|
||
.video-container video { | ||
transform: translateY(-10%); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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