mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 09:12:16 +01:00
59 lines
1.1 KiB
CSS
59 lines
1.1 KiB
CSS
.button,
|
|
input[type="submit"].button,
|
|
a.button-inverted:hover {
|
|
background-color: #415e96;
|
|
border: 1px solid #415e96;
|
|
color: white;
|
|
padding: 15px 32px;
|
|
margin: 1em;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
/* font-size: 16px;*/
|
|
min-width: auto;
|
|
}
|
|
|
|
button.button-inverted,
|
|
a.button-inverted {
|
|
background-color: white;
|
|
border: 1px solid #415e96;
|
|
color: #415e96;
|
|
padding: 15px 32px;
|
|
margin: 1em;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.button svg{
|
|
fill:white;
|
|
margin-bottom: -12px;
|
|
}
|
|
|
|
|
|
|
|
.button__medium,
|
|
a.button__medium {
|
|
font-size: 1rem;
|
|
padding: 8px;
|
|
margin: 1px 5px;
|
|
}
|
|
|
|
.button__medium:hover,
|
|
a.button__medium:hover {
|
|
padding: 8px;
|
|
margin: 1px 5px;
|
|
}
|
|
|
|
.button--call-to-action,
|
|
a.button--call-to-action,
|
|
.button--call-to-action:hover,
|
|
a.button--call-to-action:hover,
|
|
input[type="submit"].button--call-to-action {
|
|
background-color: #ed0678;
|
|
border-color: #ed0678;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|