0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00

tutorial: fix custombutton colors for a11y contrast (#6212)

This commit is contained in:
Mauricio Paternina 2021-04-21 11:46:00 -05:00 committed by GitHub
parent 10e3e3dae8
commit 27234275c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -2,18 +2,18 @@
button {
height: 4rem;
width: 8rem;
background-color: #aaa;
border-color: #f1c40f;
color: #f1c40f;
background-color: #ddd;
border-color: #ff3e00;
color: #ff3e00;
font-size: 1.25rem;
background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
background-image: linear-gradient(45deg, #ff3e00 50%, transparent 50%);
background-position: 100%;
background-size: 400%;
transition: background 300ms ease-in-out;
}
button:hover {
background-position: 0;
color: #aaa;
color: #ddd;
}
</style>

View File

@ -2,18 +2,18 @@
button {
height: 4rem;
width: 8rem;
background-color: #aaa;
border-color: #f1c40f;
color: #f1c40f;
background-color: #ddd;
border-color: #ff3e00;
color: #ff3e00;
font-size: 1.25rem;
background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
background-image: linear-gradient(45deg, #ff3e00 50%, transparent 50%);
background-position: 100%;
background-size: 400%;
transition: background 300ms ease-in-out;
}
button:hover {
background-position: 0;
color: #aaa;
color: #ddd;
}
</style>