This commit is contained in:
kankys
2024-10-21 18:08:37 +02:00
parent 8e1d15a936
commit c1f0d0369c
13 changed files with 377 additions and 81 deletions

View File

@ -33,3 +33,5 @@ function scrollToTop() {
document.body.scrollTop = 0; // Pro Safari
document.documentElement.scrollTop = 0; // Pro ostatní prohlížeče
}
// Code-box

View File

@ -129,7 +129,7 @@ p {
/*Code Box*/
.code-box {
position: relative;
width: 500px;
width: 600px;
height: auto;
border: 1px solid #734f96;
padding: 5px;
@ -141,17 +141,6 @@ p {
border-radius: 7px;
}
#copy-button {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: whitesmoke;
background-color: transparent;
border: 1px solid #734f96;
}
/* EOS - Welcome*/