updates
parent
02ff03e909
commit
f8b93da0aa
File diff suppressed because one or more lines are too long
@ -1,187 +0,0 @@
|
||||
/* scroll and position fix the legend */
|
||||
$(window).scroll(function(){
|
||||
if ($(this).scrollTop() > 320) {
|
||||
$('.legend').addClass('legendfixed');
|
||||
} else {
|
||||
$('.legend').removeClass('legendfixed');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
/* frequent words */
|
||||
$('.chosen_words').click( function(){
|
||||
var word = $(this).text();
|
||||
alert(word);
|
||||
});
|
||||
|
||||
$('.t_chosen_words').click( function(){
|
||||
var word = $(this).text();
|
||||
alert(word);
|
||||
});
|
||||
|
||||
|
||||
|
||||
/* legend & pos tag highlights */
|
||||
$(document).ready(function(){
|
||||
$('.legendverb').mouseover(function(){ $('.legendverb').css('background-color', 'yellow'); });
|
||||
$('.legendverb').mouseout(function(){ $('.legendverb').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendnoun').mouseover(function(){ $('.legendnoun').css('background-color', 'springgreen'); });
|
||||
$('.legendnoun').mouseout(function(){ $('.legendnoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadjective').mouseover(function(){ $('.legendadjective').css('background-color', 'blue'); });
|
||||
$('.legendadjective').mouseout(function(){ $('.legendadjective').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadverb').mouseover(function(){ $('.legendadverb').css('background-color', 'purple'); });
|
||||
$('.legendadverb').mouseout(function(){ $('.legendadverb').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpossesivepronoun').mouseover(function(){ $('.legendpossesivepronoun').css('background-color', 'red'); });
|
||||
$('.legendpossesivepronoun').mouseout(function(){ $('.legendpossesivepronoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpresentparticiple').mouseover(function(){ $('.legendpresentparticiple').css('background-color', 'brown'); });
|
||||
$('.legendpresentparticiple').mouseout(function(){ $('.legendpresentparticiple').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadjectivesuperlative').mouseover(function(){ $('.legendadjectivesuperlative').css('background-color', 'salmon'); });
|
||||
$('.legendadjectivesuperlative').mouseout(function(){ $('.legendadjectivesuperlative').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendadverb-comparative-superative').mouseover(function(){ $('.legendadverb-comparative-superative').css('background-color', 'brown'); });
|
||||
$('.legendadverb-comparative-superative').mouseout(function(){ $('.legendadverb-comparative-superative').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendpropernoun').mouseover(function(){ $('.legendpropernoun').css('background-color', 'pink'); });
|
||||
$('.legendpropernoun').mouseout(function(){ $('.legendpropernoun').css('background-color', 'transparent'); });
|
||||
|
||||
$('.legendhide').mouseover(function(){ $('.legendhide').css('background-color', 'black'); });
|
||||
$('.legendhide').mouseout(function(){ $('.legendhide').css('background-color', 'transparent'); });
|
||||
|
||||
|
||||
|
||||
// click to turn on background colors
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function() {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').toggleClass('verb'); //should stay in color on.
|
||||
});
|
||||
|
||||
$('.legendadjective, .JJ').click(function() {
|
||||
$('.legendadjective, .JJ').toggleClass('adjective');
|
||||
});
|
||||
|
||||
$('.legendpossesivepronoun, .PRPS').click(function() {
|
||||
$('.legendpossesivepronoun, .PRPS').toggleClass('possesivepronoun');
|
||||
});
|
||||
|
||||
$('.legendpresentparticiple, .VBG').click(function() {
|
||||
$('.legendpresentparticiple, .VBG').toggleClass('presentparticiple');
|
||||
});
|
||||
|
||||
|
||||
$('.legendadjectivesuperlative, .JJS').click(function() {
|
||||
$('.legendadjectivesuperlative, .JJS').toggleClass('adjectivesuperlative');
|
||||
});
|
||||
|
||||
$('.legendnoun, .NN, .NNS').click(
|
||||
function() {
|
||||
$('.legendnoun, .NN, .NNS').toggleClass('noun');
|
||||
});
|
||||
|
||||
$('.legendpropernoun, .NNP, .NNPS').click(
|
||||
function() {
|
||||
$('.legendpropernoun, .NNP, .NNPS').toggleClass('propernoun');
|
||||
});
|
||||
|
||||
$('.legendadverb, .RB').click(
|
||||
function() {
|
||||
$('.legendadverb, .RB').toggleClass('adverb');
|
||||
});
|
||||
|
||||
$('.legendadverb-comparative-superative, .RBR, .JJR, .RBS').click(
|
||||
function() {
|
||||
$('.legendadverb-comparative-superative, .RBR, .JJR, .RBS').toggleClass('adverb-comparative-superative');
|
||||
});
|
||||
|
||||
$('.legendhide, .TO, .DT, .IN, .WDT, .WP, .MD, .PRP, .CC, .VBP, .WRB, .marks, .CD, .comma, .dot').click(function() {
|
||||
$('.legendhide, .TO, .DT, .IN, .WDT, .WP, .MD, .PRP, .CC, .VBP, .WRB, .marks, .CD, .comma, .dot').toggleClass('hide');
|
||||
});
|
||||
|
||||
|
||||
|
||||
/* multiple click to change css */
|
||||
$(function() {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').each(function() {
|
||||
var count = 0;
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function(){
|
||||
count++;
|
||||
if (count === 1) {
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb');
|
||||
}
|
||||
else if(count === 2){
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb');
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb-bg');
|
||||
}
|
||||
else{
|
||||
$('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb-bg');
|
||||
count = 0;
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Image cick to make bigger */
|
||||
$('.image').click(
|
||||
function() {
|
||||
$(this).toggleClass('img_clicked');
|
||||
});
|
||||
|
||||
$('.t_image').click(
|
||||
function() {
|
||||
$(this).toggleClass('t_img_clicked');
|
||||
})
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// /* multiple click to change css */
|
||||
// $(function() {
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').each(function() {
|
||||
// var count = 0;
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').click(function(){
|
||||
// count++;
|
||||
// if (count === 1) {
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb');
|
||||
// }
|
||||
// else if(count === 2){
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb');
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').addClass('verb-bg');
|
||||
// }
|
||||
// else{
|
||||
// $('.legendverb, .VB, .VBZ, .VBN, .VVD').removeClass('verb-bg');
|
||||
// count = 0;
|
||||
// }
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,34 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.8.2.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="style3.css">
|
||||
|
||||
|
||||
<title></title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="columngrid">
|
||||
|
||||
<div id="columngrid1">
|
||||
<div id="columngrid1-1"></div>
|
||||
<div id="columngrid1-2"></div>
|
||||
<div id="columngrid1-3"></div>
|
||||
|
||||
</div>
|
||||
<div id="columngrid2">
|
||||
<div id="columngrid2-1"></div>
|
||||
<div id="columngrid2-2"></div>
|
||||
<div id="columngrid2-3"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,183 +0,0 @@
|
||||
$(document).ready(function(){
|
||||
|
||||
// index page
|
||||
var modal = document.getElementById("myModal"); //$("#myModal");
|
||||
var btn = document.getElementById("button");
|
||||
var btn_bar = document.getElementById("button-right");
|
||||
var tos_iframe = document.getElementById("tosview");
|
||||
|
||||
// Get the <span> element that closes the modal
|
||||
var span = document.getElementsByClassName("close")[0];
|
||||
|
||||
// When the user clicks the button, open the modal
|
||||
$( ".button-tos" ).click(function() {
|
||||
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||
console.log(text_tos);
|
||||
|
||||
$('iframe#tosview').attr('src', text_tos);
|
||||
$('#myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
|
||||
// When the user clicks on <span> (x), close the modal
|
||||
span.onclick = function() {
|
||||
modal.style.display = "none";
|
||||
tos_iframe.src = tos_iframe.src;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// When the user clicks right menu, open the modal
|
||||
$( ".button-ht" ).click(function() {
|
||||
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||
console.log(text_treaty);
|
||||
|
||||
$('iframe#treatyview').attr('src', text_treaty);
|
||||
$('#t_myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
$('.t_close').click(function() {
|
||||
$('#t_myModal').css('display', 'none');
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
|
||||
})
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// When the user clicks on <span> (x), close the modal
|
||||
t_span.onclick = function() {
|
||||
t_modal.style.display = "none";
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// index page
|
||||
var t_modal = document.getElementById("t_myModal");
|
||||
var t_btn = document.getElementById("t_button");
|
||||
var t_btn_bar = document.getElementById("t_button-right");
|
||||
var treaty_iframe = document.getElementById("treatyview");
|
||||
|
||||
// Get the <span> element that closes the modal
|
||||
var t_span = document.getElementsByClassName("t_close")[0];
|
||||
// When the user clicks the button, open the modal
|
||||
t_btn.onclick = function() {
|
||||
t_modal.style.display = "block";
|
||||
}
|
||||
//right bar list
|
||||
t_btn_bar.onclick = function() {
|
||||
modal.style.display = "block";
|
||||
}
|
||||
|
||||
// When the user clicks on <span> (x), close the modal
|
||||
t_span.onclick = function() {
|
||||
t_modal.style.display = "none";
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
// index page
|
||||
var modal = document.getElementById("myModal"); //$("#myModal");
|
||||
var btn = document.getElementById("button");
|
||||
var btn_bar = document.getElementById("button-right");
|
||||
var tos_iframe = document.getElementById("tosview");
|
||||
|
||||
// Get the <span> element that closes the modal
|
||||
var span = document.getElementsByClassName("close")[0];
|
||||
|
||||
// When the user clicks the button, open the modal
|
||||
$( ".button-tos" ).click(function() {
|
||||
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||
console.log(text_tos);
|
||||
|
||||
$('iframe#tosview').attr('src', text_tos);
|
||||
$('#myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
|
||||
// When the user clicks on <span> (x), close the modal
|
||||
span.onclick = function() {
|
||||
modal.style.display = "none";
|
||||
}
|
||||
|
||||
|
||||
|
||||
// When the user clicks right menu, open the modal
|
||||
$( ".button-ht" ).click(function() {
|
||||
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||
console.log(text_treaty);
|
||||
|
||||
$('iframe#treatyview').attr('src', text_treaty);
|
||||
$('#t_myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
$('.t_close').click(function() {
|
||||
$('#t_myModal').css('display', 'none');
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// index page
|
||||
var t_modal = document.getElementById("t_myModal");
|
||||
var t_btn = document.getElementById("t_button");
|
||||
var t_btn_bar = document.getElementById("t_button-right");
|
||||
var treaty_iframe = document.getElementById("treatyview");
|
||||
|
||||
// Get the <span> element that closes the modal
|
||||
var t_span = document.getElementsByClassName("t_close")[0];
|
||||
// When the user clicks the button, open the modal
|
||||
t_btn.onclick = function() {
|
||||
t_modal.style.display = "block";
|
||||
}
|
||||
//right bar list
|
||||
t_btn_bar.onclick = function() {
|
||||
modal.style.display = "block";
|
||||
}
|
||||
|
||||
// When the user clicks on <span> (x), close the modal
|
||||
t_span.onclick = function() {
|
||||
t_modal.style.display = "none";
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
}
|
||||
|
@ -1,39 +0,0 @@
|
||||
$(document).ready(function(){
|
||||
|
||||
// When the user clicks the button, open the modal
|
||||
$( '.button-tos').click(function() {
|
||||
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||
console.log(text_tos);
|
||||
|
||||
$('iframe#tosview').attr('src', text_tos);
|
||||
$('#myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
$('.close').click(function() {
|
||||
$('#myModal').css('display', 'none');
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
// When the user clicks right menu, open the modal
|
||||
$('.button-ht').click(function() {
|
||||
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||
console.log(text_treaty);
|
||||
|
||||
$('iframe#treatyview').attr('src', text_treaty);
|
||||
$('#t_myModal').css('display', 'block');
|
||||
|
||||
});
|
||||
|
||||
$('.t_close').click(function() {
|
||||
$('#t_myModal').css('display', 'none');
|
||||
treaty_iframe.src = treaty_iframe.src;
|
||||
|
||||
});
|
||||
|
||||
|
||||
})
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,677 +0,0 @@
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DMMono";
|
||||
src: url("http://bohyewoo.com/webfonts/DM_Mono/DMMono-Regular.ttf") format("ttf");
|
||||
}
|
||||
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:wght@200;300;400;500&family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
|
||||
|
||||
|
||||
|
||||
/* navigation locating right position*/
|
||||
.namemargin:before {
|
||||
display: block;
|
||||
content: "";
|
||||
height: 50px;
|
||||
margin: -50px 0 0;
|
||||
|
||||
}
|
||||
|
||||
.indent > li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.poslist {
|
||||
column-count: 2;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.tof {
|
||||
width: calc(17vw);
|
||||
padding: 5px;
|
||||
top: 10px;
|
||||
left: 15px;
|
||||
z-index: 997;
|
||||
background-color: black;
|
||||
position: fixed;
|
||||
font-size: 7pt;
|
||||
}
|
||||
|
||||
|
||||
/* not scrolling while modal is opened */
|
||||
|
||||
#overlay_modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* pop-up */
|
||||
|
||||
#overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cnt223 a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.cnt223{
|
||||
min-width: 600px;
|
||||
width: 55vw;
|
||||
min-height: 150px;
|
||||
margin: 100px auto;
|
||||
background: #f3f3f3;
|
||||
position: relative;
|
||||
z-index: 999;
|
||||
padding: 15px 35px;
|
||||
border-radius: 50px;
|
||||
box-shadow: 0 2px 5px #000;
|
||||
}
|
||||
|
||||
.cnt223 p{
|
||||
|
||||
/**/font-size: 16px;
|
||||
font-family: 'Source Sans Pro', sans-serif;
|
||||
|
||||
clear: both;
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
.cnt223 p a{
|
||||
color: red;
|
||||
}
|
||||
|
||||
.cnt223 .x{
|
||||
float: right;
|
||||
height: 35px;
|
||||
left: 22px;
|
||||
position: relative;
|
||||
top: -25px;
|
||||
width: 34px;
|
||||
|
||||
}
|
||||
|
||||
.cnt223 .x:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.cnt223 > h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup{
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
overflow-y: hidden;
|
||||
margin: 0 auto;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.popupclose {
|
||||
font-family: Belgika-40th;
|
||||
color: black !important;
|
||||
font-size: 20pt;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
left: 24vw;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.popupclose:hover {
|
||||
text-decoration-line: none;
|
||||
color: red !important;
|
||||
font-size: 20pt;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
left: 24vw;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* index.html */
|
||||
|
||||
* {
|
||||
top: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.indent {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.icon2 {
|
||||
color: white;
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.wrapper {
|
||||
background-color: black;
|
||||
font-family: 'Source Sans Pro', sans-serif;
|
||||
line-height: 1.9;
|
||||
font-size: 12pt;
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
|
||||
}
|
||||
|
||||
.tos {
|
||||
background-color: white;
|
||||
width: 55%;
|
||||
border: 0.5px solid black;
|
||||
padding: 40px;
|
||||
margin: 0 auto;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.index-menu {
|
||||
width: 17%;
|
||||
top: 50px;
|
||||
left: 20px;
|
||||
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
letter-spacing: 0.6px;
|
||||
|
||||
position: fixed;
|
||||
float: left;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
.menu-title {
|
||||
font-family: Belgika-40th;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
padding: 3px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.menu-title:hover {
|
||||
font-family: Belgika-40th;
|
||||
background-color: white;
|
||||
color: red;
|
||||
cursor: pointer;
|
||||
padding: 3px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.menu-title-right {
|
||||
font-family: Belgika-40th;
|
||||
color: white;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.menu-title-country {
|
||||
border: 0.1px solid white;
|
||||
color: white;
|
||||
padding: 5px;
|
||||
z-index: 995;
|
||||
}
|
||||
|
||||
.menu-title-country:hover {
|
||||
border: 0.1px solid white;
|
||||
color: white;
|
||||
padding: 5px;
|
||||
z-index: 995;
|
||||
}
|
||||
|
||||
|
||||
.index-menu-right {
|
||||
width: 17.5%;
|
||||
top: 50px;
|
||||
right: calc(0.8vw);
|
||||
overflow-y: auto;
|
||||
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
letter-spacing: 0.5px;
|
||||
|
||||
position: fixed;
|
||||
float: left;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
.index-menu-single {
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
|
||||
border-bottom: none;
|
||||
text-decoration: none;
|
||||
line-height: 2;
|
||||
padding: 2px;
|
||||
|
||||
}
|
||||
|
||||
.index-menu-single:hover {
|
||||
background-color: white;
|
||||
color: red;
|
||||
|
||||
}
|
||||
|
||||
.single-right {
|
||||
line-height: 2;
|
||||
}
|
||||
|
||||
|
||||
#header {
|
||||
background-color: black;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
font-family: belgika-8th;
|
||||
font-size: 12pt;
|
||||
color: white;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
padding: 10px;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
#header h1 {
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
#title-text {
|
||||
font-family: Belgika-8th;
|
||||
font-size: 30pt;
|
||||
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-family: Belgika;
|
||||
font-size: 20pt;
|
||||
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: Belgika;
|
||||
font-size: 20pt;
|
||||
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-family: Belgika;
|
||||
font-size: 15pt;
|
||||
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0033FF;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
.text {
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-bottom: -5px;
|
||||
|
||||
border-bottom: 2px solid black;
|
||||
cursor: pointer;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.text .text-hover {
|
||||
visibility: hidden;
|
||||
width: 400px;
|
||||
font-family: Belgika-8th;
|
||||
font-size: 8pt;
|
||||
|
||||
padding: 10px;
|
||||
background-color: #0033FF;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0;
|
||||
position: absolute;
|
||||
|
||||
top: calc(-9vh);
|
||||
left: calc(-9vh);
|
||||
z-index: 998;
|
||||
}
|
||||
|
||||
|
||||
.text .text-hover-top {
|
||||
visibility: hidden;
|
||||
width: 600px;
|
||||
font-family: Belgika-8th;
|
||||
font-size: 8pt;
|
||||
padding: 10px;
|
||||
background-color: #0033FF ;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0;
|
||||
|
||||
/* Position the tooltip */
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
|
||||
top: calc(-9vh);
|
||||
left: calc(-9vh);
|
||||
z-index: 998;
|
||||
}
|
||||
|
||||
.text .text-hover-img {
|
||||
visibility: hidden;
|
||||
/* Position the tooltip */
|
||||
position: absolute;
|
||||
z-index: 998;
|
||||
|
||||
top: calc(-400px);
|
||||
left: calc(-200px);
|
||||
|
||||
}
|
||||
|
||||
|
||||
.text:hover {
|
||||
color: #0033FF ;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.text:hover .text-hover {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.text:hover .text-hover-top {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.text:hover .text-hover-img {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
|
||||
#reference-number {
|
||||
color: blue;
|
||||
font-weight: bold;
|
||||
font-size: 8pt;
|
||||
border: none;
|
||||
|
||||
}
|
||||
|
||||
.reference-text {
|
||||
font-size: 9pt;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.reference-link {
|
||||
font-size: 9pt;
|
||||
border-bottom: 2px solid black;
|
||||
}
|
||||
|
||||
.reference-link:hover {
|
||||
color: #0033FF ;
|
||||
font-size: 9pt;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* The Modal (background) */
|
||||
|
||||
#overlay_modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
|
||||
border: 1px solid #888;
|
||||
float: left;
|
||||
z-index: 999 !important;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Modal Content */
|
||||
.modal-content {
|
||||
background-color: gainsboro;
|
||||
width: 95%;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
float: left;
|
||||
|
||||
-webkit-animation-name: animatetop;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-name: animatetop;
|
||||
animation-duration: 0.5s;
|
||||
|
||||
}
|
||||
|
||||
.t_modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
float: right;
|
||||
border: 1px solid #888;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
/* Modal Content */
|
||||
.t_modal-content {
|
||||
background-color: gainsboro;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
width: 95%;
|
||||
float: right;
|
||||
|
||||
-webkit-animation-name: animatetop;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-name: animatetop;
|
||||
animation-duration: 0.5s;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Add Animation */
|
||||
@-webkit-keyframes animatetop {
|
||||
from {top:-300px; opacity:0}
|
||||
to {top:0; opacity:1}
|
||||
}
|
||||
|
||||
@keyframes animatetop {
|
||||
from {top:-300px; opacity:0}
|
||||
to {top:0; opacity:1}
|
||||
}
|
||||
|
||||
|
||||
.close {
|
||||
font-family: 'Anonymous Pro', monospace !important;
|
||||
top: 0;
|
||||
left: calc(46vw);
|
||||
color: #aaaaaa;
|
||||
float: right;
|
||||
font-size: 60px;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.t_close {
|
||||
font-family: 'Anonymous Pro', monospace !important;
|
||||
top: 0;
|
||||
right: calc(12vw);
|
||||
color: #aaaaaa;
|
||||
float: right;
|
||||
font-size: 60px;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
||||
.close:hover,
|
||||
.close:focus, .t_close:hover,
|
||||
.t_close:focus {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#button, #t_button {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
border-bottom: 2px solid black;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#button:hover, #t_button:hover {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
color: #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.reference-website {
|
||||
color: #0033FF;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#tosview {
|
||||
border: none;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: -20px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#treatyview {
|
||||
border: none;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: -20px;
|
||||
|
||||
}
|
@ -1,140 +0,0 @@
|
||||
|
||||
|
||||
#columngrid {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
|
||||
/* overflow-x: hidden;
|
||||
overflow-y: hidden;
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid1 {
|
||||
background:url(
|
||||
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAKCAYAAACXDi8zAAAAFUlEQVQYV2P8////fwY0wAgCw10CABx0KAs6LxsOAAAAAElFTkSuQmCC ) repeat;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
|
||||
|
||||
}
|
||||
|
||||
/*#columngrid2 {
|
||||
background-color: green;
|
||||
border: 5px solid red;
|
||||
|
||||
width: calc(49.5vw);
|
||||
height: 100%;
|
||||
|
||||
display: block;
|
||||
float: right;
|
||||
|
||||
|
||||
}*/
|
||||
|
||||
/*#columngrid1-1 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid1-2 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid1-3 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}*/
|
||||
|
||||
/*
|
||||
#columngrid2 {
|
||||
background-color: green;
|
||||
border: 10px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid2-1 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid2-2 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#columngrid2-3 {
|
||||
background-color: green;
|
||||
border: 3px solid red;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: calc(100% / 3);
|
||||
height: 100%;
|
||||
|
||||
|
||||
}
|
||||
|
||||
*/
|
@ -1,630 +0,0 @@
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Belgika";
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.eot");
|
||||
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.woff") format("woff"),
|
||||
url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.svg#filename") format("svg");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DMMono";
|
||||
src: url("http://bohyewoo.com/webfonts/DM_Mono/DMMono-Regular.ttf") format("ttf");
|
||||
}
|
||||
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:wght@200;300;400;500&family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
|
||||
|
||||
|
||||
|
||||
/* navigation locating right position*/
|
||||
.namemargin:before {
|
||||
display: block;
|
||||
content: "";
|
||||
height: 50px;
|
||||
margin: -50px 0 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* not scrolling while modal is opened */
|
||||
|
||||
#overlay_modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* pop-up */
|
||||
|
||||
#overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cnt223 a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.cnt223{
|
||||
min-width: 600px;
|
||||
width: 55vw;
|
||||
min-height: 150px;
|
||||
margin: 100px auto;
|
||||
background: #f3f3f3;
|
||||
position: relative;
|
||||
z-index: 999;
|
||||
padding: 15px 35px;
|
||||
border-radius: 50px;
|
||||
box-shadow: 0 2px 5px #000;
|
||||
}
|
||||
|
||||
.cnt223 p{
|
||||
|
||||
/**/font-size: 16px;
|
||||
font-family: 'Source Sans Pro', sans-serif;
|
||||
|
||||
clear: both;
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
.cnt223 p a{
|
||||
color: red;
|
||||
}
|
||||
|
||||
.cnt223 .x{
|
||||
float: right;
|
||||
height: 35px;
|
||||
left: 22px;
|
||||
position: relative;
|
||||
top: -25px;
|
||||
width: 34px;
|
||||
|
||||
}
|
||||
|
||||
.cnt223 .x:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.cnt223 > h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup{
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
overflow-y: hidden;
|
||||
margin: 0 auto;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.popupclose {
|
||||
font-family: Belgika-40th;
|
||||
color: black !important;
|
||||
font-size: 20pt;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
left: 24vw;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.popupclose:hover {
|
||||
text-decoration-line: none;
|
||||
color: red !important;
|
||||
font-size: 20pt;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
left: 24vw;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* index.html */
|
||||
|
||||
* {
|
||||
top: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.indent {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.icon {
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.wrapper {
|
||||
background-color: black;
|
||||
font-family: 'Source Sans Pro', sans-serif;
|
||||
line-height: 1.9;
|
||||
font-size: 12pt;
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
|
||||
}
|
||||
|
||||
.tos {
|
||||
background-color: white;
|
||||
width: 55%;
|
||||
border: 0.5px solid black;
|
||||
/* outline: 40px dotted black;
|
||||
*/ padding: 40px;
|
||||
margin: 0 auto;
|
||||
|
||||
}
|
||||
|
||||
.index-menu {
|
||||
width: 17%;
|
||||
top: 50px;
|
||||
left: 20px;
|
||||
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
letter-spacing: 0.6px;
|
||||
|
||||
position: fixed;
|
||||
float: left;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
.menu-title {
|
||||
font-family: Belgika-40th;
|
||||
color: white;
|
||||
|
||||
}
|
||||
|
||||
.menu-title-right {
|
||||
font-family: Belgika-40th;
|
||||
color: white;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.menu-title-country {
|
||||
border: 0.1px solid white;
|
||||
color: white;
|
||||
padding: 5px;
|
||||
z-index: 995;
|
||||
}
|
||||
|
||||
.menu-title-country:hover {
|
||||
border: 0.1px solid white;
|
||||
color: white;
|
||||
padding: 5px;
|
||||
z-index: 995;
|
||||
}
|
||||
|
||||
|
||||
.index-menu-right {
|
||||
width: 17.5%;
|
||||
top: 50px;
|
||||
right: calc(0.8vw);
|
||||
overflow-y: auto;
|
||||
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
letter-spacing: 0.5px;
|
||||
|
||||
position: fixed;
|
||||
float: left;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
.index-menu-single {
|
||||
font-family: Belgika-8th;
|
||||
font-size: 7pt;
|
||||
color: white;
|
||||
|
||||
border-bottom: none;
|
||||
text-decoration: none;
|
||||
line-height: 2;
|
||||
padding: 2px;
|
||||
|
||||
}
|
||||
|
||||
.index-menu-single:hover {
|
||||
background-color: white;
|
||||
color: red;
|
||||
|
||||
}
|
||||
|
||||
.single-right {
|
||||
line-height: 2;
|
||||
}
|
||||
|
||||
|
||||
#header {
|
||||
background-color: black;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
font-family: belgika-8th;
|
||||
font-size: 12pt;
|
||||
color: white;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
padding: 10px;
|
||||
z-index: 994;
|
||||
|
||||
}
|
||||
|
||||
#header h1 {
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
#title-text {
|
||||
font-family: Belgika-8th;
|
||||
font-size: 30pt;
|
||||
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-family: Belgika;
|
||||
font-size: 20pt;
|
||||
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: Belgika;
|
||||
font-size: 20pt;
|
||||
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-family: Belgika;
|
||||
font-size: 15pt;
|
||||
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0033FF;
|
||||
text-decoration: none;
|
||||
|
||||
}
|
||||
|
||||
.text {
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-bottom: -5px;
|
||||
|
||||
border-bottom: 2px solid black;
|
||||
cursor: pointer;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.text .text-hover {
|
||||
visibility: hidden;
|
||||
width: 400px;
|
||||
font-family: Belgika-8th;
|
||||
font-size: 8pt;
|
||||
|
||||
padding: 10px;
|
||||
background-color: #0033FF;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0;
|
||||
position: absolute;
|
||||
|
||||
top: calc(-9vh);
|
||||
left: calc(-9vh);
|
||||
z-index: 998;
|
||||
}
|
||||
|
||||
|
||||
.text .text-hover-top {
|
||||
visibility: hidden;
|
||||
width: 600px;
|
||||
font-family: Belgika-8th;
|
||||
font-size: 8pt;
|
||||
padding: 10px;
|
||||
background-color: #0033FF ;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0;
|
||||
|
||||
/* Position the tooltip */
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
|
||||
top: calc(-9vh);
|
||||
left: calc(-9vh);
|
||||
z-index: 998;
|
||||
}
|
||||
|
||||
.text .text-hover-img {
|
||||
visibility: hidden;
|
||||
/* Position the tooltip */
|
||||
position: absolute;
|
||||
z-index: 998;
|
||||
|
||||
top: calc(-400px);
|
||||
left: calc(-200px);
|
||||
|
||||
}
|
||||
|
||||
|
||||
.text:hover {
|
||||
color: #0033FF ;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.text:hover .text-hover {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.text:hover .text-hover-top {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.text:hover .text-hover-img {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
|
||||
#reference-number {
|
||||
color: blue;
|
||||
font-weight: bold;
|
||||
font-size: 8pt;
|
||||
border: none;
|
||||
|
||||
}
|
||||
|
||||
.reference-text {
|
||||
font-size: 9pt;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.reference-link {
|
||||
font-size: 9pt;
|
||||
border-bottom: 2px solid black;
|
||||
}
|
||||
|
||||
.reference-link:hover {
|
||||
color: #0033FF ;
|
||||
font-size: 9pt;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* The Modal (background) */
|
||||
|
||||
#overlay_modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #000;
|
||||
filter:alpha(opacity=70);
|
||||
-moz-opacity:0.8;
|
||||
-khtml-opacity: 0.8;
|
||||
opacity: 0.8;
|
||||
z-index: 997;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
|
||||
border: 1px solid #888;
|
||||
float: left;
|
||||
z-index: 999 !important;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Modal Content */
|
||||
.modal-content {
|
||||
background-color: gainsboro;
|
||||
width: 95%;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
float: left;
|
||||
|
||||
-webkit-animation-name: animatetop;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-name: animatetop;
|
||||
animation-duration: 0.5s;
|
||||
|
||||
}
|
||||
|
||||
.t_modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
float: right;
|
||||
border: 1px solid #888;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
/* Modal Content */
|
||||
.t_modal-content {
|
||||
background-color: gainsboro;
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
width: 95%;
|
||||
float: right;
|
||||
|
||||
-webkit-animation-name: animatetop;
|
||||
-webkit-animation-duration: 0.5s;
|
||||
animation-name: animatetop;
|
||||
animation-duration: 0.5s;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Add Animation */
|
||||
@-webkit-keyframes animatetop {
|
||||
from {top:-300px; opacity:0}
|
||||
to {top:0; opacity:1}
|
||||
}
|
||||
|
||||
@keyframes animatetop {
|
||||
from {top:-300px; opacity:0}
|
||||
to {top:0; opacity:1}
|
||||
}
|
||||
|
||||
|
||||
.close {
|
||||
font-family: 'Anonymous Pro', monospace !important;
|
||||
top: 0;
|
||||
left: calc(46vw);
|
||||
color: #aaaaaa;
|
||||
float: right;
|
||||
font-size: 60px;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.t_close {
|
||||
font-family: 'Anonymous Pro', monospace !important;
|
||||
top: 0;
|
||||
right: calc(12vw);
|
||||
color: #aaaaaa;
|
||||
float: right;
|
||||
font-size: 60px;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
||||
.close:hover,
|
||||
.close:focus, .t_close:hover,
|
||||
.t_close:focus {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#button, #t_button {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
border-bottom: 2px solid black;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#button:hover, #t_button:hover {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
border-bottom: 2px solid #0033FF;
|
||||
color: #0033FF;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.reference-website {
|
||||
color: #0033FF;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#tosview {
|
||||
border: none;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: -20px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#treatyview {
|
||||
border: none;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: -20px;
|
||||
|
||||
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue