RyanModlin (Talk | contribs) |
|||
Line 130: | Line 130: | ||
display: block; | display: block; | ||
} | } | ||
+ | |||
+ | |||
+ | /*-----Team Page Classes-----*/ | ||
+ | |||
+ | .column { | ||
+ | float: left; | ||
+ | width: 25%; | ||
+ | padding: 0px; | ||
+ | background-color: #515151; | ||
+ | } | ||
+ | |||
+ | /* Clearfix (clear floats) */ | ||
+ | .row::after { | ||
+ | content: ""; | ||
+ | clear: both; | ||
+ | display: table; | ||
+ | background-color: #515151; | ||
+ | } | ||
+ | |||
+ | /* Slideshow container */ | ||
+ | .slideshow-container { | ||
+ | max-width: 1000px; | ||
+ | position: relative; | ||
+ | margin: auto; | ||
+ | overflow:hidden; | ||
+ | border-top:3px solid black; | ||
+ | border-bottom:3px solid black; | ||
+ | border-left:1.5px solid black; | ||
+ | border-right: 1.5px solid black; | ||
+ | background-color: #515151; | ||
+ | } | ||
+ | |||
+ | /* Next & previous buttons */ | ||
+ | .prev, .next { | ||
+ | cursor: pointer; | ||
+ | position: absolute; | ||
+ | top: 50%; | ||
+ | width: auto; | ||
+ | padding: 16px; | ||
+ | margin-top: -22px; | ||
+ | color: white; | ||
+ | font-weight: bold; | ||
+ | font-size: 18px; | ||
+ | transition: 0.6s ease; | ||
+ | border-radius: 0 3px 3px 0; | ||
+ | user-select: none; | ||
+ | opacity: .3; | ||
+ | } | ||
+ | |||
+ | /* Position the "next button" to the right */ | ||
+ | .next { | ||
+ | right: 0; | ||
+ | border-radius: 3px 0 0 3px; | ||
+ | } | ||
+ | |||
+ | /* On hover, add a grey background color */ | ||
+ | .prev:hover, .next:hover { | ||
+ | background-color: #f1f1f1; | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | /* The dots/bullets/indicators */ | ||
+ | .dot { | ||
+ | cursor: pointer; | ||
+ | height: 10px; | ||
+ | width: 10px; | ||
+ | margin: 0 2px; | ||
+ | background-color: #bbb; | ||
+ | border-radius: 50%; | ||
+ | display: inline-block; | ||
+ | transition: background-color 0.6s ease; | ||
+ | } | ||
+ | |||
+ | .active, .dot:hover { | ||
+ | background-color: #717171; | ||
+ | } | ||
+ | |||
+ | /* Fading animation */ | ||
+ | .fade { | ||
+ | -webkit-animation-name: fade; | ||
+ | -webkit-animation-duration: 1.5s; | ||
+ | animation-name: fade; | ||
+ | animation-duration: 1.5s; | ||
+ | background-color: #515151 | ||
+ | } | ||
+ | |||
+ | .FullNames { | ||
+ | text-align: center; | ||
+ | font-size:175%; | ||
+ | margin-top:-0px; | ||
+ | background-color: #515151; | ||
+ | color: #F0AE2F | ||
+ | } | ||
+ | |||
+ | @-webkit-keyframes fade { | ||
+ | from {opacity: .75} | ||
+ | to {opacity: 1} | ||
+ | } | ||
+ | @keyframes fade { | ||
+ | from {opacity: .75} | ||
+ | to {opacity: 1} | ||
+ | } | ||
+ | |||
+ | /* Sliding animation */ | ||
+ | .slide { | ||
+ | overflow-x: hidden; | ||
+ | transition-property: all; | ||
+ | transition-duration: .5s; | ||
+ | transition-timing-function: cubic-bezier(0, 1, 0.5, 1); | ||
+ | } | ||
+ | |||
+ | .slide.closed { | ||
+ | max-width: 0; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
/*-----PAGE IN PROGRESS-----*/ | /*-----PAGE IN PROGRESS-----*/ |
Revision as of 18:25, 7 June 2018