view mrjunejune/src/tools/markdown_to_html/index.css @ 200:90dfcef375fb

Added my own s3 bucket uploader url to mrjunejune.
author MrJuneJune <me@mrjunejune.com>
date Sat, 14 Feb 2026 16:32:24 -0800
parents 8c74204fd362
children
line wrap: on
line source

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  color: rgb(var(--gray-dark));
  margin-bottom: 10px;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: calc(100vh - 200px);
  min-height: 500px;
}

.panel {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(var(--gray), 0.3);
  padding: 15px;
  overflow: hidden;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.label {
  font-weight: 600;
  color: rgb(var(--gray-dark));
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

button:hover {
  background: var(--accent-dark);
}

/* Input textarea */
textarea {
  flex: 1;
  width: 100%;
  padding: 15px;
  background: rgb(var(--gray-light));
  color: rgb(var(--gray-dark));
  border: 1px solid rgba(var(--gray), 0.3);
  border-radius: 4px;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.5;
  resize: none;
}

textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Output panel */
#output {
  flex: 1;
  padding: 15px;
  border: 1px solid rgba(var(--gray), 0.3);
  border-radius: 4px;
  background: var(--white);
  color: rgb(var(--gray-dark));
  overflow-y: auto;
  font-size: 15px;
}

/* Markdown output styles */
#output h1, #output h2, #output h3, #output h4, #output h5, #output h6 {
  margin: 1em 0 0.5em 0;
  color: rgb(var(--gray-dark));
  line-height: 1.3;
}

#output h1:first-child, #output h2:first-child, #output h3:first-child {
  margin-top: 0;
}

#output h1 { font-size: 1.8em; }
#output h2 { font-size: 1.5em; }
#output h3 { font-size: 1.25em; }
#output h4 { font-size: 1.1em; }

#output p {
  margin: 0.8em 0;
}

#output ul, #output ol {
  margin: 0.8em 0;
  padding-left: 25px;
}

#output li {
  margin: 0.3em 0;
}

#output code {
  background: rgb(var(--gray-light));
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 0.9em;
  color: var(--accent);
}

#output pre {
  background: var(--black);
  color: var(--white);
  padding: 15px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1em 0;
  line-height: 1.4;
}

#output pre code {
  background: none;
  color: inherit;
  padding: 0;
}

#output blockquote {
  border-left: 4px solid var(--accent);
  padding: 10px 15px;
  margin: 1em 0;
  background: rgb(var(--gray-light));
  color: rgb(var(--gray));
  font-style: italic;
}

#output a {
  color: var(--accent);
  text-decoration: none;
}

#output a:hover {
  text-decoration: underline;
}

#output hr {
  border: none;
  border-top: 1px solid rgb(var(--gray-light));
  margin: 1.5em 0;
}

#output img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

#output strong {
  font-weight: 600;
}

#output em {
  font-style: italic;
}

#output del {
  text-decoration: line-through;
  color: rgb(var(--gray));
}

/* Mobile */
@media (max-width: 900px) {
  body {
    padding: 15px;
  }

  .container {
    grid-template-columns: 1fr;
    height: auto;
    gap: 15px;
  }

  .panel {
    min-height: 350px;
  }

  textarea {
    min-height: 300px;
  }

  #output {
    min-height: 300px;
  }
}