82 lines
2.2 KiB
HTML
82 lines
2.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;
|
|
}
|
|
.input-form-container {
|
|
width: 75%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.card{
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
margin-bottom: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.profile-links {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.status_screen_input {
|
|
background-color: #424242;
|
|
color: #ffffff;
|
|
border-radius: 20px
|
|
}
|
|
|
|
.input-form-container textarea.status_screen_input {
|
|
resize: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-light bg-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">
|
|
<img src="/static/Facitstalker-logo.svg " width="50" height="50">
|
|
FaceIT Stalker by HerZ
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
<div class="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</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> |