design and authors
parent
081eb0459c
commit
bf3e214513
@ -0,0 +1,43 @@
|
|||||||
|
header {
|
||||||
|
text-align: center;
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header object {
|
||||||
|
width: 100vmin;
|
||||||
|
height: auto;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
object svg {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: normal;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
margin-top: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main > * + * {
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767.98px) {
|
||||||
|
header object {
|
||||||
|
width: 75vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
:root {
|
:root {
|
||||||
--background: #ddd;
|
--background: #edd;
|
||||||
|
--color: black;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 6.8 KiB |
@ -0,0 +1,22 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Exquisite Branch</title>
|
||||||
|
<link rel="stylesheet" href="{{url_for('static', filename='css/variables.css')}}" />
|
||||||
|
<link rel="stylesheet" href="{{url_for('static', filename='css/global.css')}}" />
|
||||||
|
|
||||||
|
{%block head %}{%endblock%}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav>
|
||||||
|
{%block nav %}
|
||||||
|
<a href="{{url_for('home.home')}}">Home</a>
|
||||||
|
<a href="{{url_for('display.display')}}">Results</a>
|
||||||
|
{% endblock %}
|
||||||
|
</nav>
|
||||||
|
{%block contents %} {%endblock%}
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue