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

View File

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

View File

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