ed
This commit is contained in:
parent
dfccd319c6
commit
797e88f682
134 changed files with 2785 additions and 0 deletions
|
@ -0,0 +1,40 @@
|
|||
DS-Font's TrueType Fonts
|
||||
Font name: DS-Digital (Normal, Bold, Italic, Bold Italic), Version 1.0
|
||||
Author: Dusit Supasawat
|
||||
Web Site: http://ds-font.hypermart.net
|
||||
Contact me: Dusit Supasawat, 325/38 Suksawat32 Ratburana Bangkok Thailand 10140
|
||||
Email address: dusit@mailcity.com
|
||||
|
||||
Thanks for trying! We hope you really enjoy this my typeface. This font is
|
||||
distributed as shareware. You can use this font for a long time as you want.
|
||||
After all, when you think this font can be usefulness for you. You can send
|
||||
me some money, that would be way cool.
|
||||
|
||||
I'm only asking $20 US shareware fee per this typeface for personal use.
|
||||
And $45 US is the usual amount per this typeface for commercial use.
|
||||
|
||||
Distribution: You are free to distribute this archive so long as this text
|
||||
file is distributed with the archive, the font file have not been modified,
|
||||
and it is understood that the font's copyright remains with the original
|
||||
author (Dusit Supasawat).
|
||||
|
||||
To register send your payment to:
|
||||
|
||||
Dusit Supasawat
|
||||
325/38 Suksawat32 Ratburana
|
||||
Bangkok Thailand 10140
|
||||
|
||||
And fill out something as this order form, and send it in with your payment.
|
||||
|
||||
Font name:_________________________________________
|
||||
Your information
|
||||
Name:______________________________________________
|
||||
Address:___________________________________________
|
||||
City, State : _____________________________________
|
||||
Zip Code:__________________________________________
|
||||
Country:___________________________________________
|
||||
E-MAIL address:____________________________________
|
||||
|
||||
|
||||
You will receive fonts which you order by Email after registration. These fonts
|
||||
will be generated for you by specify your name in font information.
|
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<script src="script.js"></script>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="text"></div>
|
||||
</body>
|
||||
</html>
|
14
resources/[inventory]/cfx-mxc-vendingmachines/dui/script.js
Normal file
14
resources/[inventory]/cfx-mxc-vendingmachines/dui/script.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
window.onload = function() {
|
||||
let code = document.getElementsByClassName("text")[0]
|
||||
|
||||
window.addEventListener("message", (e) => {
|
||||
let {data} = e;
|
||||
|
||||
switch (data.action) {
|
||||
case "update":
|
||||
code.innerText = data.code
|
||||
break
|
||||
|
||||
}
|
||||
})
|
||||
}
|
47
resources/[inventory]/cfx-mxc-vendingmachines/dui/style.css
Normal file
47
resources/[inventory]/cfx-mxc-vendingmachines/dui/style.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
@font-face {
|
||||
font-family: "DS-DIGI";
|
||||
src: url("assets/DS-DIGI.TTF");
|
||||
}
|
||||
|
||||
body {
|
||||
background: url("assets/background.png");
|
||||
background-size: cover;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.text {
|
||||
position: absolute;
|
||||
top: 24px;
|
||||
left: 125px;
|
||||
|
||||
color: #31ab88;
|
||||
text-shadow: 0px 0px 2px #31ab88;
|
||||
|
||||
font-family: "DS-DIGI";
|
||||
font-size: 18px;
|
||||
|
||||
width: 100%;
|
||||
height: 43px;
|
||||
|
||||
text-transform: uppercase;
|
||||
|
||||
animation: flash 0.6s infinite;
|
||||
}
|
||||
|
||||
@keyframes flash {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
}
|
||||
50% {
|
||||
opacity: 1.0;
|
||||
}
|
||||
51% {
|
||||
opacity: 0.2;
|
||||
}
|
||||
100% {
|
||||
opacity: 0.2;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue