Disable text-selection on main h1.
Have logo link back to /
This commit is contained in:
parent
56d9a2a30e
commit
93ea97eaf8
|
@ -16,6 +16,10 @@ h1, h2 {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/* Small screens */
|
||||
@media only screen and (max-width: 1080px) {
|
||||
body {
|
||||
|
|
|
@ -24,7 +24,9 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<h1><span style="margin: 0; padding: 0.2em; color: black; background-color: white;">Under</span><span style="margin: 0; padding: 0.2em; color: white; background-color: black;">Cover</span></h1>
|
||||
<a href="/" style="text-decoration: none;">
|
||||
<h1><span style="margin: 0; padding: 0.2em; color: black; background-color: white;">Under</span><span style="margin: 0; padding: 0.2em; color: white; background-color: black;">Cover</span></h1>
|
||||
<a>
|
||||
<h2>The secret cover letter generator</h2>
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
<form method=post>
|
||||
|
|
Loading…
Reference in New Issue