Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,019 Bytes
e0b1273 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
:root {
--title-font-size: clamp(1.5rem, 6vw, 3rem);
--subtitle-font-size: clamp(1rem, 2vw, 1.2rem);
}
h1 {
text-align: center;
font-size: var(--title-font-size);
display: block;
}
h2 {
text-align: center;
font-size: 2rem;
display: block;
}
#duplicate-button {
display: block;
margin: 1rem auto;
color: #fff;
background: #1565c0;
border-radius: 100vh;
padding: 0.5rem 1rem;
}
#component-0 {
max-width: 85%;
margin: 2rem auto;
padding: 2rem;
}
@media (max-width: 600px) {
#component-0 {
max-width: 100%;
padding: 0.5rem;
}
}
#title-container {
text-align: center;
padding: 2rem 0;
}
#title {
font-size: var(--title-font-size);
color: #333;
font-family: 'Helvetica Neue', sans-serif;
text-transform: uppercase;
background: transparent;
}
#title span {
background: linear-gradient(45deg, #4EACEF, #28b485);
background-clip: text;
color: transparent;
}
#subtitle {
text-align: center;
font-size: var(--subtitle-font-size);
margin-top: 1rem;
} |