🎨 style of cursor hovering buttons

This commit is contained in:
tykayn 2019-08-11 17:26:32 +02:00
parent d941d6bed8
commit 16e8ab4ec5
3 changed files with 17 additions and 4 deletions

View File

@ -20,7 +20,10 @@
<h1 i18n>
Où sont mes sondages ?
</h1>
<form action="/retrieve">
<form
action="https://framadate.org/find_polls.php"
method="post"
>
<label
class="description"
for="email"
@ -30,8 +33,9 @@
</label>
<input
type="email"
name="email"
name="mail"
id="email"
autofocus="autofocus"
placeholder="mon e-mail"
/>
<button

View File

@ -10,6 +10,11 @@
border: 0;
margin: 1em;
min-height: 1.5rem;
cursor: pointer;
&:hover {
background-color: $dusty-orange;
}
}
.btn-block {

View File

@ -1,7 +1,11 @@
@charset "UTF-8";
//@font-face {
// font-family: "Proza-libre";
// src: url("ProzaLibre-Regular.ttf") format("ttf"); // TODO find the correct path
//}
body {
font-family: "DejaVu Sans Light", "Arial", "DejaVu Sans Mono";
font-family: "Proza-libre", "PT Sans", "DejaVu Sans Light", "Arial", "DejaVu Sans Mono";
font-size: 1.4rem;
}
@ -11,5 +15,5 @@ h3,
h4,
h5,
h6 {
font-family: "Brie Light", "Arial", "DejaVu Sans Mono";
font-family: "Proza-libre", "Brie Light", "Arial", "DejaVu Sans Mono";
}