Skip to content

Commit

Permalink
responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
Kokomi000 committed Jan 27, 2024
1 parent 4e83056 commit 7994447
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
20 changes: 19 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@
color: white;
text-align: center;
font-family: monospace;
margin: 0;
padding: 0;
}
body{
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
::-webkit-scrollbar{
width: 0;
height: 0;
}
img{
height: 300px;
width: 100%;
}
h1{
text-shadow: 1px 2px 20px;
Expand All @@ -28,4 +40,10 @@ a:hover{
}
a{
font-size: 20px;
}

@media only screen and (min-width: 800px) {
*{
width: 800px;
}
}
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ <h2>Usage:</h2>
2.3 Get FilesList</br>
<code>[ClassName].FileList[{element}];</code> </br>
2.4 Read Data From File in this dir to Array</br>
<code>[ClassName].Read({FileName});</code> </br>
<code>[ClassName].Read({FileName}, {UnHash Function (optional) for every line});</code> </br>
2.5 Save Data from Array to File<br>
<code>[ClassName].Save({FileName});</code> </br>
<code>[ClassName].Save({FileName}, {Hash Function (optional) for every line});</code> </br>
2.6 Create File<br>
<code>[ClassName].Create({FileName});</code> </br>
2.7 Remove File<br>
Expand All @@ -69,9 +69,9 @@ <h2>Usage:</h2>
2.3 Get FilesList</br>
<code>[ClassName].FileList[{element}];</code> </br>
2.4 Read Data From File in this dir to Array</br>
<code>[ClassName].Read({FileName});</code> </br>
<code>[ClassName].Read({FileName}, {UnHash Function (optional) for every line});</code> </br>
2.5 Save Data from Array to File<br>
<code>[ClassName].Save({FileName});</code> </br>
<code>[ClassName].Save({FileName}, {Hash Function (optional) for every line});</code> </br>
2.6 Create File<br>
<code>[ClassName].Create({FileName});</code> </br>
2.7 Remove File<br>
Expand Down

0 comments on commit 7994447

Please sign in to comment.