109 lines
3.2 KiB
HTML
109 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<title>{% block titel %}{% endblock %}</title>
|
|
<link rel="icon" href="/static/Facitstalker-logo.svg" type="image/svg+xml">
|
|
<style>
|
|
body {
|
|
background-color: #212121;
|
|
color: #ffffff;
|
|
}
|
|
h1 {
|
|
color: #ffffff;
|
|
}
|
|
.content {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
margin-top: 2.5%;
|
|
}
|
|
.input-form-container {
|
|
width: 75%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.Steam-PB{
|
|
border-radius: 25px ;
|
|
}
|
|
|
|
.card-body{
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.Faceit-elo-and-steamid64 {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.FaceIT-elo{
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.SteamID64{
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
}
|
|
.status_screen_input {
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
border-radius: 20px
|
|
}
|
|
|
|
.profile-links{
|
|
margin: 0 auto;
|
|
margin-top: 2%;
|
|
margin-bottom: 2%;
|
|
}
|
|
|
|
.input-form-container textarea.status_screen_input {
|
|
resize: none;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #212121;
|
|
}
|
|
|
|
.text-muted{
|
|
margin 0 auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#"><a class="navbar-brand" href="/"><img src="/static/Facitstalker-logo.svg " width="50" height="50">FaceIT Stalker</a></a>
|
|
<button
|
|
class="navbar-toggler"
|
|
type="button"
|
|
data-mdb-toggle="collapse"
|
|
data-mdb-target="#navbarNavAltMarkup"
|
|
aria-controls="navbarNavAltMarkup"
|
|
aria-expanded="false"
|
|
aria-label="Toggle navigation"
|
|
>
|
|
<i class="fas fa-bars"></i>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
|
|
<div class="navbar-nav">
|
|
<a class="nav-link" href="/">Home</a>
|
|
<a class="nav-link" href="/donate">Donate</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<a href="/contact" class="text-muted"> Contact</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html> |