-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: esx_textui updated to version 1.0.1 + Run formatter
- Loading branch information
1 parent
d7b43ab
commit 8c66112
Showing
6 changed files
with
37 additions
and
29 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
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 |
---|---|---|
|
@@ -64,9 +64,11 @@ body { | |
0% { | ||
transform: scaleY(0); | ||
} | ||
|
||
80% { | ||
transform: scaleY(1.1); | ||
} | ||
|
||
100% { | ||
transform: scaleY(1); | ||
} | ||
|
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,29 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" /> | ||
<script src="https://kit.fontawesome.com/a81368914c.js"></script> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<script src="js/script.js"></script> | ||
</head> | ||
<body> | ||
<div id="notifyInfo" class="notify info"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">info</span> | ||
<p class="text" id="infoMessage"></p> | ||
</div> | ||
|
||
<head> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" /> | ||
<script src="https://kit.fontawesome.com/a81368914c.js"></script> | ||
<link rel="stylesheet" href="css/style.css" /> | ||
<script src="js/script.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="notifyInfo" class="notify info"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">info</span> | ||
<p class="text" id="infoMessage"></p> | ||
</div> | ||
<div id="notifySuccess" class="notify success"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">check_circle</span> | ||
<p class="text" id="successMessage"></p> | ||
</div> | ||
</div> | ||
<div id="notifySuccess" class="notify success"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">check_circle</span> | ||
<p class="text" id="successMessage"></p> | ||
</div> | ||
<div id="notifyError" class="notify error"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">error</span> | ||
<p class="text" id="errorMessage"></p> | ||
</div> | ||
</div> | ||
<div id="notifyError" class="notify error"> | ||
<div class="innerText"> | ||
<span class="material-symbols-outlined icon">error</span> | ||
<p class="text" id="errorMessage"></p> | ||
</div> | ||
</body> | ||
</div> | ||
</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