You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
1.5 KiB
CSS

body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.button {
display: flex;
align-items: center;
padding: 15px 20px;
font-size: 18px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
margin: 10px;
width: 200px;
text-align: center;
}
.button img {
width: 24px;
height: 24px;
margin-right: 10px;
}
@media (prefers-color-scheme: light) {
body {
color: #ff5a99;
background-color: #fff3f9;
}
.button{
color: #fff3f9;
background-color: #ffa7c7;
}
.button:hover{
background-color: #ff5a99;
}
footer{
color: #ffa7c7;
}
footer a:link{
color:#ff5a99
}
footer a:visited{
color: #ffa7c7;
}
footer a:hover{
color:#ff5a99
}
footer a:active{
color:#ff5a99
}
}
@media (prefers-color-scheme: dark) {
body {
color: #00d791;
background-color: #060606;
}
.button{
color: #060606;
background-color: #00d791;
}
.button:hover{
background-color: #00d791;
}
footer{
color: #55052c;
}
footer a:link{
color: #00d791;
}
footer a:visited{
color: #55052c;
}
footer a:hover{
color: #00d791;
}
footer a:active{
color: #00d791;
}
}