Commit 6f9e1d79 authored by Lian Araujo's avatar Lian Araujo
Browse files

Merge branch 'styles-and-settings' into 'main'

CSS Styles and settings for VS-Code

See merge request bergstromm/ran2_trial!6
parents 15d0e258 c6a239af
Loading
Loading
Loading
Loading

.vscode/settings.json

0 → 100644
+15 −0
Original line number Diff line number Diff line
{
    "cSpell.words": [
        "DAPS",
        "PDCP",
        "RACH",
        "RNTI"
    ],
    "markdown.styles": [
        "specification\\\\utils\\\\css\\\\specification.css"
    ],
    "markdownlint.config": {
        "MD029": false,  // Accept numbered list bullets with explicit numbering
        "MD041": false   // Accept files that do not start with Heading level 1
    },
}
 No newline at end of file
+100 −0
Original line number Diff line number Diff line
body {
    background-color: #fff;
    color: #082441;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    max-width: 750px;
    text-align: justify;
    margin-top: 0.5em
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 1.0em;
    margin-bottom: 6pt;
  }

  h1 {
    font-size: 38px;
    font-weight: 700;
  }

  h2 {
    font-size: 32px;
    font-weight: 700;
  }

  h3 {
    font-size: 24px;
    font-weight: 700;
  }

  h4 {
    font-size: 22px;
    font-weight: 600;
  }

  h5, h6 {
    font-size: 18px;
    font-weight: 600;
  }


  li {
    margin-top: 0.6em;
    margin-left: 0.5rem;
    padding-left: 0.5em;
  }

  li:before {
    content: none;
    position: relative;

  }

  ul {
    list-style: none;
    margin-left: 0.0rem;
    padding-left: 1.0rem;
  }

  ul { list-style: "1> "; }
  ul ul { list-style: "2> "; }
  ul ul ul { list-style: "3> "; }
  ul ul ul ul { list-style: "4> "; }
  ul ul ul ul ul { list-style: "5> "; }

  a {
    color: #000000;
    text-decoration: underline;
    font-style: italic
  }

  a:link {
    text-decoration: underline
  }

  a:hover {
    color: #225170;
  }

  strong {
    font-weight: bold;
  }

  img {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;;
  }

  table :is(td, th) {
    border: 1pt solid black;
    padding: 0.3em;
  }

  tr:nth-child(even) {background: #FFF}
  tr:nth-child(odd) {background: #FFF}
 No newline at end of file