alexray/tweets
0
1body {2 --text: hsl(0 0% 15%);3 padding: 2.5rem;4 font-family: sans-serif;5 color: var(--text);6}7body.dark-theme {8 --text: hsl(0 0% 90%);9 background-color: hsl(223 39% 7%);10}11 12main {13 max-width: 80rem;14 text-align: center;15}16 17section {18 display: flex;19 flex-direction: column;20 align-items: center;21}22 23a {24 color: var(--text);25}26 27select, input, button, .text-gen-output {28 padding: 0.5rem 1rem;29}30 31select, img, input {32 margin: 0.5rem auto 1rem;33}34 35form {36 width: 25rem;37 margin: 0 auto;38}39 40input {41 width: 70%;42}43 44button {45 cursor: pointer;46}47 48.text-gen-output {49 min-height: 1.2rem;50 margin: 1rem;51 border: 0.5px solid grey;52}53 54#dataset button {55 width: 6rem;56 margin: 0.5rem;57}58 59#dataset button.hidden {60 visibility: hidden;61}62 63table {64 max-width: 40rem;65 text-align: left;66 border-collapse: collapse;67}68 69thead {70 font-weight: bold;71}72 73td {74 padding: 0.5rem;75}76 77td:not(thead td) {78 border: 0.5px solid grey;79}80 