Skip to content

Instantly share code, notes, and snippets.

@bmontana
Created April 26, 2018 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmontana/5eaa57dcc25a3e111324f073d83b2c5c to your computer and use it in GitHub Desktop.
Save bmontana/5eaa57dcc25a3e111324f073d83b2c5c to your computer and use it in GitHub Desktop.
Slideshow CSS for Kiosk Project
#frame {
border-collapse: collapse;
border-style: none;
border-width: 0;
width: 100%;
height: 100vh;
}
.frame-top {
height: 10vh;
background-color: #005395;
}
.frame-side {
height: 16vw;
background-color: #005395;
}
.frame-bottom {
height: 16vh;
background-color: #005395;
}
#frame td {
vertical-align: middle;
}
/* #image {
display: block;
max-width: 100%;
max-height: 100%;
width: 100%;
height: auto;
} */
#image-cell {
background-color: #005395;
height: 80vh;
}
body {
background-color: #005395;
}
#logo {
height: 100%;
}
#page-div {
position: relative;
width: 100%;
height: 100%;
}
#banner-div {
position: absolute:
top: 0;
left: 0;
height: 10vh;
width: 100%;
}
#logo-div, #time-div {
position: relative;
height: 10vh;
width: 20%;
padding-top: 20px;
z-index: 99;
}
#logo-div {
float: left;
padding-left: 30px;
}
#time-div {
float: right;
color: #ffffff;
}
#image-div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
}
#image {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment