-
-
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
93 additions
and
34 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
html, | ||
body { | ||
font-family: Cairo; | ||
} |
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,4 +1,4 @@ | ||
program Project1; | ||
program RutRace; | ||
|
||
{$R *.dres} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta $(ThemeColor)> | ||
<noscript>Your browser does not support JavaScript!</noscript> | ||
<link rel="icon" sizes="192x192" href="IconResMid.png"> | ||
<link rel="apple-touch-icon" href="IconResMid.png"> | ||
<script type="text/javascript" src="serviceworker.js"></script> | ||
<meta $(Manifest)> | ||
<link $(FavIcon)/> | ||
<title>TMS Web Project</title> | ||
<script type="text/javascript" src="$(ProjectName).js"></script> | ||
|
||
|
||
|
||
<!-- HackTimer --> | ||
<script src="https://cdn.jsdelivr.net/npm/hacktimer@latest/HackTimer.silent.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/hacktimer@latest/HackTimerWorker.min.js"></script> | ||
|
||
<!-- Google's Cairo Font --> | ||
<link href="https://fonts.googleapis.com" rel="preconnect"/> | ||
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect"/> | ||
<link href="https://fonts.googleapis.com/css2?family=Cairo&display=swap" rel="stylesheet" crossorigin="anonymous"> | ||
|
||
<!-- Bootstrap 5 --> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> | ||
|
||
<!-- Font Awesome 6 Free --> | ||
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/all.min.css" integrity="sha256-Z1K5uhUaJXA7Ll0XrZ/0JhX4lAtZFpT6jkKrEDT0drU=" crossorigin="anonymous"> --> | ||
|
||
<!-- Font Awesome 6 Pro --> | ||
<script async crossorigin="anonymous" src="https://kit.fontawesome.com/24746b3b71.js"></script> | ||
|
||
|
||
<style> | ||
</style> | ||
</head> | ||
<body> | ||
<meta $(BodyParameters)> | ||
</body> | ||
<script type="text/javascript"> | ||
rtl.run(); | ||
</script> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
object Form1: TForm1 | ||
Width = 640 | ||
Height = 672 | ||
CSSLibrary = cssBootstrap | ||
ElementFont = efCSS | ||
object WebLabel1: TWebLabel | ||
Left = 176 | ||
Top = 72 | ||
Width = 44 | ||
Height = 13 | ||
Caption = 'Rut Race' | ||
ElementFont = efCSS | ||
HeightPercent = 100.000000000000000000 | ||
WidthPercent = 100.000000000000000000 | ||
end | ||
object WebHTMLDiv1: TWebHTMLDiv | ||
Left = 176 | ||
Top = 120 | ||
Width = 297 | ||
Height = 113 | ||
ChildOrder = 1 | ||
ElementFont = efCSS | ||
Role = '' | ||
end | ||
end |
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