This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
72 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ body { | |
margin: 0; | ||
max-height: 100vh !important; | ||
max-width: 100vw !important; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
#code { | ||
margin-top: 20vh; | ||
transition-duration: 400ms; | ||
text-align: center; | ||
box-sizing: border-box; | ||
width: 80vw; | ||
height: 50vh; | ||
margin-left: 10vw; | ||
font-size: 30vmin; | ||
border: 4px solid #ffffff; | ||
margin-top: 20vh; | ||
transition-duration: 400ms; | ||
text-align: center; | ||
box-sizing: border-box; | ||
width: 80vw; | ||
height: 50vh; | ||
margin-left: 10vw; | ||
font-size: 30vmin; | ||
border: 4px solid #ffffff; | ||
} | ||
#result { | ||
font-size: 10vmin; | ||
text-align: center; | ||
} | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
width: 100vw; | ||
font-size: 10vmin; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Interclip for Desktop</title> | ||
<link rel="stylesheet" href="../assets/css/main.css"> | ||
<link rel="stylesheet" href="../assets/css/clip.css"> | ||
<link rel="stylesheet" href="../assets/css/dark.css"> | ||
<link rel="stylesheet" href="../assets/css/title-bar.css"> | ||
<link rel="stylesheet" href="../assets/css/main.css" /> | ||
<link rel="stylesheet" href="../assets/css/clip.css" /> | ||
<link rel="stylesheet" href="../assets/css/dark.css" /> | ||
<link rel="stylesheet" href="../assets/css/title-bar.css" /> | ||
|
||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" /> | ||
</head> | ||
<div class="title-bar"> | ||
<meta | ||
http-equiv="Content-Security-Policy" | ||
content="script-src 'self' 'unsafe-inline';" | ||
/> | ||
</head> | ||
<div class="title-bar"> | ||
<div class="menu-button-container"> | ||
<img src="../assets/icons/png/64.png" | ||
id="menu-button" | ||
class="menu-button" | ||
/> | ||
<a href="get.html"> | ||
<img | ||
src="../assets/icons/png/64.png" | ||
id="menu-button" | ||
class="menu-button" | ||
/> | ||
</a> | ||
</div> | ||
<div class="app-name-container"> | ||
<p>Interclip Desktop</p> | ||
</div> | ||
<div class="window-controls-container"> | ||
<button | ||
id="minimize-button" | ||
class="minimize-button" | ||
/> | ||
<button | ||
id="min-max-button" | ||
class="min-max-button" | ||
/> | ||
<button | ||
id="close-button" | ||
class="close-button" | ||
/> | ||
<button id="minimize-button" class="minimize-button" /> | ||
<button id="min-max-button" class="min-max-button" /> | ||
<button id="close-button" class="close-button" /> | ||
</div> | ||
</div> | ||
<body id="body"> | ||
<body id="body"> | ||
<center> | ||
<span class="center code" id="code"></span> | ||
<span class="center code" id="code"></span> | ||
</center> | ||
<div name="urlform" id="content"> | ||
|
||
<input type="text" name="input" style="text-align:center;" class="input" id="search-input" autofocus> | ||
|
||
<input | ||
type="text" | ||
name="input" | ||
style="text-align:center;" | ||
class="input" | ||
id="search-input" | ||
autofocus | ||
/> | ||
</div> | ||
|
||
<script src="titlebar.js"></script> | ||
<script src="clip.js"></script> | ||
</body> | ||
|
||
</html> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters