audio-video-links-generator/style.css

142 lines
1.9 KiB
CSS
Raw Normal View History

2022-01-09 14:19:32 +01:00
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
text-rendering: optimizelegibility;
font-smooth: auto;
-webkit-font-smoothing: auto;
}
body {
2024-01-06 16:07:52 +01:00
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
2022-01-09 14:19:32 +01:00
color: hsl(258.8, 17.4%, 3%);
}
section {
display: flex;
flex-flow: row;
flex-wrap: nowrap;
}
2024-01-06 16:07:52 +01:00
label {
margin-top: 1rem;
margin-bottom: .5rem;
}
label:nth-child(1) {
margin-top: 0;
}
fieldset {
padding: .5rem;
margin-bottom: 2rem;
}
2022-01-09 14:19:32 +01:00
h1 {
margin-bottom: 1rem;
}
.inputs {
display: flex;
flex-flow: column;
width: 24rem;
2024-01-06 16:07:52 +01:00
margin-right: 2rem;
2022-01-09 14:19:32 +01:00
}
.input {
display: flex;
flex-flow: column;
2024-01-06 16:07:52 +01:00
margin-bottom: 2rem;
2022-01-09 14:19:32 +01:00
}
.output {
display: flex;
flex-flow: column;
height: 20vh;
}
2024-01-06 16:07:52 +01:00
.input-checkbox {
padding: .5rem;
user-select: none;
}
input[type="checkbox"]+label {
cursor: pointer;
}
input[type="text"] {
font-family: 'Courier New', Courier, monospace;
}
2022-01-09 14:19:32 +01:00
textarea {
border: 1px solid #5e636e;
padding: .5rem;
overflow-y: scroll;
2024-01-06 16:07:52 +01:00
font-size: .5rem;
2022-01-09 14:19:32 +01:00
font-family: 'Courier New', Courier, monospace;
width: 100%;
height: 100%;
margin-bottom: 1rem;
}
button {
padding: 0.25rem .5rem;
2024-01-06 16:07:52 +01:00
margin-bottom: 2rem;
2022-01-09 14:19:32 +01:00
}
.preview {
2024-01-06 16:26:50 +01:00
width: 700px;
2024-01-06 16:07:52 +01:00
padding: 1rem;
2022-01-09 14:19:32 +01:00
border: 1px solid #5e636e;
}
section {
padding: 1rem;
}
.player {
2024-01-06 16:07:52 +01:00
width: 100%;
margin-bottom: 2rem;
2022-01-09 14:19:32 +01:00
}
2024-01-06 16:07:52 +01:00
2022-01-09 14:19:32 +01:00
.podcast-logos {
2024-01-06 16:07:52 +01:00
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
2022-01-09 14:19:32 +01:00
}
.audio-logos {
2024-01-06 16:07:52 +01:00
margin-top: 2rem;
2022-01-09 14:19:32 +01:00
}
.video-logos {
2024-01-06 16:07:52 +01:00
margin-bottom: 2rem;
2022-01-09 14:19:32 +01:00
}
2024-01-06 16:07:52 +01:00
.podcast-logos>a {
margin: 0.75rem 0;
2022-01-09 14:19:32 +01:00
}
2024-01-06 16:07:52 +01:00
.podcast-logos>a,
.podcast-logos>a:hover {
text-decoration: none !important;
box-shadow: none !important;
2022-01-09 14:19:32 +01:00
}
2024-01-06 16:07:52 +01:00
.podcast-logos>a>img {
width: auto !important;
margin: 0 0.75rem;
max-width: 120px;
height: 3rem;
2022-01-09 14:19:32 +01:00
}
@media (prefers-color-scheme: dark) {
2024-01-06 16:07:52 +01:00
.logo {
content: var(--dark-image);
background-color: #191b1f;
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
}