Skip to content

Commit

Permalink
source
Browse files Browse the repository at this point in the history
  • Loading branch information
owsko committed Jul 7, 2024
1 parent af783ee commit 5d33885
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 15 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ <h1 class="prevent" id="header-h1">&gt;.&lt;</h1>
</div>
</div>

<div class="iframe">
<div class="iframe prevent">
<iframe
src="pages/empty.html"
frameborder="1"
frameborder="0"
width="100%"
id="iframe-folder"
></iframe>
Expand Down
6 changes: 2 additions & 4 deletions pages/folders/sourcecode.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@

<link rel="stylesheet" href="../../stylesheets/folders.css" />
<link rel="stylesheet" href="../../stylesheets/common.css" />
<link rel="stylesheet" href="../../stylesheets/sourcecode.css" />

<title>folder2</title>
</head>

<body>
<div>
<textarea
name="SOURCECODE"
style="background-color: black; color: white; border-width: 0px"
>
<textarea name="SOURCECODE" readonly>
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down
29 changes: 25 additions & 4 deletions stylesheets/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,55 @@ body {
color: whitesmoke;
font-family: monospace;
font-size: 13px;

overflow: hidden;
}




.prevent {
user-select: none;
}




a:link {
color: whitesmoke;
color: rgb(255, 255, 255);
text-decoration: none;
}

a:visited {
color: whitesmoke;
color: rgb(255, 255, 255);
text-decoration: none;
}

a:hover {
color: burlywood;
color: rgb(223, 149, 53);
text-decoration: none;
}

a:active {
color: burlywood;
color: rgb(223, 149, 53);
text-decoration: none;
}




::-moz-selection {
color: rgb(0, 0, 0);
background: rgb(255, 0, 0);
}

::selection {
color: rgb(0, 0, 0);
background: rgb(255, 0, 0);
}






8 changes: 4 additions & 4 deletions stylesheets/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ header {

input {
background-color: black;
color: whitesmoke;
color: rgb(255, 255, 255);
width: 70%;
margin-left: 12%;
font-size: 18px;
Expand All @@ -24,7 +24,7 @@ input {

textarea {
background-color: black;
color: whitesmoke;
color: rgb(255, 255, 255);
width: 70%;
margin-left: 12%;
font-size: 18px;
Expand All @@ -38,7 +38,7 @@ textarea {

button {
background-color: black;
color: whitesmoke;
color: rgb(255, 255, 255);
width: 30%;
border-radius: 18px;
font-size: 22px;
Expand Down Expand Up @@ -82,7 +82,7 @@ textarea:focus-within {
}

button:hover {
background-color: whitesmoke;
background-color: rgb(255, 255, 255);
color: black;
cursor: pointer;
}
Expand Down
2 changes: 1 addition & 1 deletion stylesheets/menuBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#menu-icon div {
width: 25px;
height: 2px;
background-color: whitesmoke;
background-color: rgb(255, 255, 255);
margin: 6px 0;
transition: 0.4s;
}
Expand Down
34 changes: 34 additions & 0 deletions stylesheets/sourcecode.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
textarea {
background-color: black;
color: white;
width: 100%;
height: 85vh;

border-width: 0px;

overflow: auto;
resize: none;

scrollbar-width: none;
-ms-overflow-style: none;

}

textarea::-webkit-scrollbar {
display: none;
}

textarea:focus-within {
border-width: 0px;
border-color: transparent;

border: none;
overflow: hidden;
outline: none;

-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;

resize: none;
}

0 comments on commit 5d33885

Please sign in to comment.