forked from ClaireM2/eclipse-volttron.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
96 additions
and
36 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 |
---|---|---|
@@ -1,59 +1,119 @@ | ||
.thumbnail { | ||
top:-50px; | ||
left:-35px; | ||
display:block; | ||
z-index:999; | ||
cursor: pointer; | ||
|
||
-webkit-transition-property: all; | ||
-webkit-transition-duration: 0.3s; | ||
-webkit-transition-timing-function: ease; | ||
top:-50px; | ||
left:-35px; | ||
display:block; | ||
z-index:999; | ||
cursor: pointer; | ||
-webkit-transition-property: all; | ||
-webkit-transition-duration: 0.3s; | ||
-webkit-transition-timing-function: ease; | ||
} | ||
|
||
/*change the number below to scale to the appropriate size*/ | ||
/*change the number below to scale to the appropriate size*/ | ||
.thumbnail:hover { | ||
transform: scale(1.1); | ||
transform: scale(1.1); | ||
|
||
} | ||
|
||
* {box-sizing: border-box;} | ||
body {font-family: Verdana, sans-serif;} | ||
.mySlides {display: none;} | ||
img {vertical-align: middle;} | ||
|
||
/* Slideshow container */ | ||
.slideshow-container { | ||
max-width: 100%; | ||
position: relative; | ||
margin: auto; | ||
z-index: -1; | ||
|
||
|
||
|
||
} | ||
|
||
.figConfigpdf{ | ||
display: inline-table; | ||
max-width: 20%; | ||
margin-right: 50px; | ||
/* Caption text */ | ||
.text { | ||
color:white; | ||
font-size: 25px; | ||
padding: 50px 250px; | ||
position: absolute; | ||
bottom: 350px; | ||
width: 100%; | ||
text-align:left; | ||
line-height: 50px; | ||
text-shadow: 2px 2px 0px black; | ||
} | ||
|
||
p { | ||
font-size: medium; | ||
margin-top: -15px; | ||
line-height: 100%; | ||
} | ||
/* Number text (1/3 etc) */ | ||
.numbertext { | ||
color: #f2f2f2; | ||
font-size: 12px; | ||
padding: 8px 12px; | ||
position: absolute; | ||
top: 0; | ||
} | ||
|
||
/* The dots/bullets/indicators */ | ||
|
||
.active { | ||
background-color:white; | ||
} | ||
|
||
.figConfigpdf h4 { | ||
line-height: 100%; | ||
/* Fading animation */ | ||
.fade { | ||
animation-name: fade; | ||
animation-duration: 1.5s; | ||
} | ||
|
||
.figConfig{ | ||
display: inline-table; | ||
max-width: 20%; | ||
margin-right: 50px; | ||
@keyframes fade { | ||
from {opacity: .4} | ||
to {opacity: 1} | ||
} | ||
|
||
/* On smaller screens, decrease text size */ | ||
@media only screen and (max-width: 300px) { | ||
.text {font-size: 11px} | ||
} | ||
|
||
p { | ||
font-size: medium; | ||
margin-top: -15px; | ||
line-height: 100%; | ||
} | ||
|
||
.figConfigpdf{ | ||
display: inline-table; | ||
max-width: 20%; | ||
margin-right: 50px; | ||
} | ||
.figConfigpdf p{ | ||
font-size: medium; | ||
margin-top: -15px; | ||
line-height: 100%; | ||
} | ||
|
||
|
||
|
||
.figConfigpdf h4 { | ||
line-height: 100%; | ||
} | ||
|
||
.figConfig img { | ||
max-width: 380px; | ||
min-width: 380px; | ||
|
||
|
||
.figConfig{ | ||
display: inline-table; | ||
max-width: 20%; | ||
margin-right: 50px; | ||
} | ||
.figConfig p { | ||
font-size: medium; | ||
margin-top: -15px; | ||
line-height: 100%; | ||
} | ||
|
||
|
||
|
||
.figConfig img { | ||
max-width: 380px; | ||
min-width: 380px; | ||
} | ||
|
||
.figConfig h4 { | ||
line-height: 100%; | ||
line-height: 100%; | ||
} |