Tell Your Story
Help us celebrate you — the amazing community of supporters who shaped our past and continue to shape our future.
Read stories from supporters just like you!
Test Post
Hello world!
Welcome to Fake Site. This is your first post. Edit or delete it, then start writing!
.tys-more-link:hover {
cursor:pointer;
}
.tysmodal {
display:none;
transition: opacity 1s ease-in;
background:rgba(0,0,0,.65);
z-index: 100000;
position: fixed;
top: 0;
left: 0;
min-width: 100%;
}
.tysstory {
width:50%;
background-color:white;
padding:3%;
z-index: 150000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 500px;
overflow-y:scroll;
}
@media (max-width:768px){
.tysstory {
width:90%;
}
}
.tys-close {
cursor: pointer;
padding-bottom: 5%;
font-size: 19px;
text-align: right;
}
jQuery(".tys-more-link").click(function () {
var postid = jQuery(this).attr("id");
jQuery("#tysmodal-"+postid).css('display','block');
});
jQuery('.tys-close').click(function () {
jQuery('.tysmodal').css('display','none');
});