Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# web-2-framework
Web 2 Framework
# Longest Yard

## Description

Description of movie.

## Sources

* [Plyr library](plyr.io/)
* [Google Fonts](https://fonts.google.com/)
* [A CodePen Pen](URL_TO_PEN)
* [ANOTHER_SOURCE]()
1 change: 1 addition & 0 deletions css/plyr.css

Large diffs are not rendered by default.

219 changes: 217 additions & 2 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,221 @@
* Outline Elements
*/

* {
/* {
outline: 1px dotted black;
}
}*/



main{
display:grid;
grid-template-columns:repeat(1,1fr);
background:lightpink;
}
.cast{
display:flex;
flex-wrap:wrap;
}
h1{
color:red;
font-family: 'Lobster', cursive;
font-family: 'Romanesco', cursive;
font-size:200px;
padding-left:300px;
transition: all .2s ease-in-out;
}
h1:hover
{
transform:scale(1.2);
}
blockquote{
color:red;
font-size:75px;
font-family: 'Lobster', cursive;
font-family: 'Romanesco', cursive;
text-align:center;
transition: all .2s ease-in-out;

}

blockquote:hover
{
font-size:100px;
transform:scale(1.2);
}
.backImage{
display:block;

width: 100%;
position:absolute;
z-index:0;
opacity:.2;
}

p{
color:red;
font-family: 'Lobster', cursive;
font-family: 'Romanesco', cursive;
font-size:38px;
}
h2{
color:red;
font-family: 'Lobster', cursive;
font-family: 'Romanesco', cursive;
transition: all .2s ease-in-out;
font-size:34px;
}
h2:hover
{
transform:scale(1.2);
}
img{
width:500px;

border-style:outset;
border-width:7px;
transition: all .2s ease-in-out;
}
img:hover{
transform:scale(1.2);
}
div{
width:90%;
padding-left:300px;
}
script{
font-family: 'Lobster', cursive;
font-family: 'Romanesco', cursive;
font-size:38px;
}

/* Custom UI Controls */
.plyr--full-ui input[type="range"]
{
color:red;

}




/* Media Queries */
/*
Mobile:
* 384px = 24em
*/
@media only screen and (min-width: 0) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Mobile Size";
}

}

/* Tablet:
* 768px = 48em
*/
@media only screen and (min-width: 24em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Tablet Size";
}

}

/* Desktop:
* 1152px = 72em
*/
@media screen and (min-width: 72em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Desktop Size";
}

}

/* Wide Desktop:
* 1440px = 90em
*/
@media screen and (min-width: 90em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Wide Desktop Size";
}

}




@media only screen
and (min-width: 0)
and (max-width: 48em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Mobile Size";
}

.cast {
text-align: center;
justify-content: center;
}

}

/* Tablet:
* 768px = 48em
1023px = 63.9375em;
*/
@media only screen
and (min-width: 48em)
and (max-width: 64em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Tablet Size";
}

}

/* Desktop:
* 1024px = 64em
* 64em and larger
*/
@media screen
and (min-width: 64em)
and (max-width: 90em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Desktop Size";
}

}

/* Wide Desktop:
* 1440px = 90em
* 90em and wider
*/
@media screen and (min-width: 90em) {

/* Diagnostic Styling. Delete When Done. */
body:before {
background: yellow;
content: "Wide Desktop Size";
}

}

Binary file modified favicons/android-chrome-192x192.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 favicons/android-chrome-512x512.png
Binary file not shown.
Binary file modified favicons/apple-touch-icon.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 modified favicons/favicon-16x16.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 modified favicons/favicon-32x32.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 modified favicons/favicon.ico
Binary file not shown.
Binary file modified favicons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 0 additions & 15 deletions favicons/safari-pinned-tab.svg

This file was deleted.

5 changes: 0 additions & 5 deletions favicons/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
Expand Down
Loading