pages/keyboard/style.css
2025-06-12 11:22:40 +02:00

62 lines
No EOL
1.2 KiB
CSS

@import url(/global.css);
button, p {
font-weight: 600;
}
.help {
color: var(--text);
background: none;
border: none;
}
.cards {
border-radius: 8px;
padding: 30px 100px;
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
transition: background-color 0.3s;
width: 900px;
max-width: 900px;
margin: 100px;
text-align: center;
top: 0;
left: 0;
}
.counter {
font-size: 24px;
margin: 40px 0;
color: var(--white);
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
gap: 40px;
justify-items: center;
align-items: center;
}
.counter > * {
background-color: var(--overlay0);
padding: 10px 5px 10px 5px;
margin: 15px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.2);
}
p, h6, h1, h3 {
color: var(--text);
transition: color 0.3s;
}
button {
transition: background-color 0.3s;
color: var(--text);
background-color: var(--surface0);
border: 2px solid var(--surface1);
border-radius: 5px;
padding: 5px;
cursor: pointer;
margin-top: 15px;
outline: none;
transition: border 0.3s;
}