mirror of
https://gitlab.com/redline-racing-division/tournament.git
synced 2025-06-15 14:46:42 +00:00
init commit
This commit is contained in:
commit
01e219ab45
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal file
@ -0,0 +1,13 @@
|
||||
# This file is a template, and might need editing before it works on your project.
|
||||
# Full project: https://gitlab.com/pages/plain-html
|
||||
pages:
|
||||
stage: deploy
|
||||
script:
|
||||
- mkdir .public
|
||||
- cp -r * .public
|
||||
- mv .public public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
35
custom.css
Normal file
35
custom.css
Normal file
@ -0,0 +1,35 @@
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
background: rgb(166, 13, 59);
|
||||
background: linear-gradient(
|
||||
0deg,
|
||||
rgba(166, 13, 59, 1) 25%,
|
||||
rgba(128, 16, 178, 1) 75%
|
||||
);
|
||||
}
|
||||
|
||||
* {
|
||||
text-align: center;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: "CooperHewittBold";
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: bold;
|
||||
font-family: helvetica;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
/* font-weight: bold; */
|
||||
font-style: italic;
|
||||
}
|
53
index.html
Normal file
53
index.html
Normal file
@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>RRD Tournamet</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css"
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
media="screen"
|
||||
href="https://fontlibrary.org/face/cooper-hewitt"
|
||||
type="text/css"
|
||||
/>
|
||||
<link rel="stylesheet" href="custom.css" />
|
||||
<script
|
||||
defer
|
||||
src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"
|
||||
></script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<p class="subtitle">
|
||||
Redline Racing Division Presents:
|
||||
</p>
|
||||
<h1 class="title">
|
||||
MARIO KART 8 TOURNAMENT
|
||||
</h1>
|
||||
<img src="karts.png" alt="karts" />
|
||||
<h2>Details</h2>
|
||||
<p>
|
||||
Event Time: 02/20/2020 5pm <b>///</b> Sign Up:
|
||||
<a
|
||||
style="color: orange !important;"
|
||||
href="https://challonge.com/tournaments/signup/F3rsE4IMVx"
|
||||
>at Challonge</a
|
||||
>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<iframe
|
||||
src="https://challonge.com/RRDMK8/module"
|
||||
width="100%"
|
||||
height="500"
|
||||
frameborder="0"
|
||||
scrolling="auto"
|
||||
allowtransparency="true"
|
||||
></iframe>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user