"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7309/css/_reset.scss" (31 May 2023, 3376 Bytes) of package /linux/misc/jitsi-meet-7309.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 /* Fonts and line heights */
    2 /**
    3  * RESET
    4  */
    5 html,
    6 body,
    7 p,
    8 div,
    9 h1,
   10 h2,
   11 h3,
   12 h4,
   13 h5,
   14 h6,
   15 img,
   16 pre,
   17 form,
   18 fieldset {
   19   margin: 0;
   20   padding: 0;
   21 }
   22 ul,
   23 ol,
   24 dl {
   25   margin: 0;
   26 }
   27 img,
   28 fieldset {
   29   border: 0;
   30 }
   31 @-moz-document url-prefix() {
   32   img {
   33     font-size: 0;
   34   }
   35   img:-moz-broken {
   36     font-size: inherit;
   37   }
   38 }
   39 /* https://github.com/necolas/normalize.css */
   40 /* Customised to remove styles for unsupported browsers */
   41 details,
   42 main,
   43 summary {
   44   display: block;
   45 }
   46 audio,
   47 canvas,
   48 progress,
   49 video {
   50   display: inline-block;
   51   transition: object-position 0.5s ease 0s;
   52   vertical-align: baseline;
   53 }
   54 audio:not([controls]) {
   55   display: none;
   56   height: 0;
   57 }
   58 [hidden],
   59 template {
   60   display: none;
   61 }
   62 input[type="button"],
   63 input[type="submit"],
   64 input[type="reset"] {
   65   -webkit-appearance: button;
   66 }
   67 /**
   68  * TYPOGRAPHY - 14px base font size, agnostic font stack
   69  */
   70 body {
   71   color: #333;
   72   font-family: Arial, sans-serif;
   73   font-size: 14px;
   74   line-height: 1.42857142857143;
   75 }
   76 /* International Font Stacks*/
   77 [lang|=en] {
   78   font-family: Arial, sans-serif;
   79 }
   80 [lang|=ja] {
   81   font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "MS Pゴシック", Verdana, Arial, sans-serif;
   82 }
   83 /* Default margins */
   84 p,
   85 ul,
   86 ol,
   87 dl,
   88 h1,
   89 h2,
   90 h3,
   91 h4,
   92 h5,
   93 h6,
   94 blockquote,
   95 pre {
   96   margin: 10px 0 0 0;
   97 }
   98 /* No top margin to interfere with box padding */
   99 p:first-child,
  100 ul:first-child,
  101 ol:first-child,
  102 dl:first-child,
  103 h1:first-child,
  104 h2:first-child,
  105 h3:first-child,
  106 h4:first-child,
  107 h5:first-child,
  108 h6:first-child,
  109 blockquote:first-child,
  110 pre:first-child {
  111   margin-top: 0;
  112 }
  113 /* Headings: desired line height in px / font size = unitless line height */
  114 h1 {
  115   color: #333;
  116   font-size: 32px;
  117   font-weight: normal;
  118   line-height: 1.25;
  119   text-transform: none;
  120   margin: 30px 0 0 0;
  121 }
  122 h2 {
  123   color: #333;
  124   font-size: 24px;
  125   font-weight: normal;
  126   line-height: 1.25;
  127   text-transform: none;
  128   margin: 30px 0 0 0;
  129 }
  130 h3 {
  131   color: #333;
  132   font-size: 20px;
  133   font-weight: normal;
  134   line-height: 1.5;
  135   text-transform: none;
  136   margin: 30px 0 0 0;
  137 }
  138 h4 {
  139   font-size: 16px;
  140   font-weight: bold;
  141   line-height: 1.25;
  142   text-transform: none;
  143   margin: 20px 0 0 0;
  144 }
  145 h5 {
  146   color: #333;
  147   font-size: 14px;
  148   font-weight: bold;
  149   line-height: 1.42857143;
  150   text-transform: none;
  151   margin: 20px 0 0 0;
  152 }
  153 h6 {
  154   color: #707070;
  155   font-size: 12px;
  156   font-weight: bold;
  157   line-height: 1.66666667;
  158   text-transform: uppercase;
  159   margin: 20px 0 0 0;
  160 }
  161 h1:first-child,
  162 h2:first-child,
  163 h3:first-child,
  164 h4:first-child,
  165 h5:first-child,
  166 h6:first-child {
  167   margin-top: 0;
  168 }
  169 /* Nice styles for using subheadings */
  170 h1 + h2,
  171 h2 + h3,
  172 h3 + h4,
  173 h4 + h5,
  174 h5 + h6 {
  175   margin-top: 10px;
  176 }
  177 
  178 
  179 /* Other typographical elements */
  180 small {
  181   color: #707070;
  182   font-size: 12px;
  183   line-height: 1.33333333333333;
  184 }
  185 code,
  186 kbd {
  187   font-family: monospace;
  188 }
  189 var,
  190 address,
  191 dfn,
  192 cite {
  193   font-style: italic;
  194 }
  195 cite:before {
  196   content: "\2014 \2009";
  197 }
  198 blockquote {
  199   border-left: 1px solid #ccc;
  200   color: #707070;
  201   margin-left: 19px;
  202   padding: 10px 20px;
  203 }
  204 blockquote > cite {
  205   display: block;
  206   margin-top: 10px;
  207 }
  208 q {
  209   color: #707070;
  210 }
  211 q:before {
  212   content: open-quote;
  213 }
  214 q:after {
  215   content: close-quote;
  216 }
  217 abbr {
  218   border-bottom: 1px #707070 dotted;
  219   cursor: help;
  220 }
  221 
  222 a {
  223   color: #44A5FF;
  224   text-decoration: none;
  225   font-weight: bold;
  226 }
  227 a:focus,
  228 a:hover,
  229 a:active {
  230   text-decoration: underline;
  231 }