gold background for colophon
This commit is contained in:
parent
fea54962d9
commit
fef8cbe80a
@ -329,7 +329,7 @@ div#listofpeople{
|
|||||||
|
|
||||||
#colophon {
|
#colophon {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 2%;
|
right: 0;
|
||||||
bottom: 10px;
|
bottom: 10px;
|
||||||
width: 10%;
|
width: 10%;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
|
@ -160,6 +160,7 @@ function getCookie(name) {
|
|||||||
$.getJSON('{{ url_for('static', filename='js/mergedjson.json') }}', function(test) {
|
$.getJSON('{{ url_for('static', filename='js/mergedjson.json') }}', function(test) {
|
||||||
$(".name-elements").empty();
|
$(".name-elements").empty();
|
||||||
$("#colophondiv").css("display","none");
|
$("#colophondiv").css("display","none");
|
||||||
|
$(".main-column-right").css("background","#8048b7");
|
||||||
colophonstatus = true;
|
colophonstatus = true;
|
||||||
// iterate in test[i].librarian to find where the name is present
|
// iterate in test[i].librarian to find where the name is present
|
||||||
//to get the test[i].debris that goes with it
|
//to get the test[i].debris that goes with it
|
||||||
@ -338,13 +339,15 @@ var flag = true;
|
|||||||
$("#colophon").click(function(){
|
$("#colophon").click(function(){
|
||||||
if (colophonstatus === true) {
|
if (colophonstatus === true) {
|
||||||
$(".name-elements").empty();
|
$(".name-elements").empty();
|
||||||
$(".main-column-right").css("clip-path","ellipse(50% 70% at center center)");
|
// $(".main-column-right").css("clip-path","ellipse(50% 70% at center center)");
|
||||||
$(".main-column-right").css("-webkit-clip-path","ellipse(50% 70% at center center)");
|
// $(".main-column-right").css("-webkit-clip-path","ellipse(50% 70% at center center)");
|
||||||
|
$(".main-column-right").css("background","#a99f89");
|
||||||
$("#colophondiv").css("display","block");
|
$("#colophondiv").css("display","block");
|
||||||
colophonstatus = false;
|
colophonstatus = false;
|
||||||
} else {
|
} else {
|
||||||
$(".main-column-right").css("clip-path","unset");
|
// $(".main-column-right").css("clip-path","unset");
|
||||||
$(".main-column-right").css("-webkit-clip-path","unset");
|
// $(".main-column-right").css("-webkit-clip-path","unset");
|
||||||
|
$(".main-column-right").css("background","#8048b7");
|
||||||
$("#colophondiv").css("display","none");
|
$("#colophondiv").css("display","none");
|
||||||
colophonstatus = true;
|
colophonstatus = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user