twtfakelinks/static/style.css
2022-12-18 18:01:13 -06:00

71 lines
914 B
CSS

*, *::before, *::after {
box-sizing: border-box;
}
body {
font-family: 'DM Sans', Arial, sans-serif;
background-color: black;
color: white;
}
input {
background-color: black;
color: white;
border: 1px solid #2f3336;
padding: 0.8rem 0.4rem;
border-radius: 10px;
display: block;
margin: 0.4rem 0;
width: 100%;
max-width: 300px;
}
a {
color: #2b90d9;
}
.result-stuff {
border: 1px solid #2f3336;
padding: 0.8rem 0.4rem;
border-radius: 10px;
}
.result-link {
display: block;
margin-top: 1rem;
}
.result-stuff p {
margin: 0;
}
.demo-graphic {
display: flex;
flex-direction: column;
align-items: center;
}
.arrow-graphic {
transform: rotate(90deg);
}
.mastodon-graphic {
width: 100px;
}
.link-card-graphic {
max-width: 100%;
}
@media (min-width: 700px) {
.demo-graphic {
flex-direction: row;
}
.link-card-graphic {
max-width: 70%;
}
.arrow-graphic {
transform: none;
}
}