Difference between revisions of "Team:Washington/CSS"

(Created page with ".debugheader{height:18px;background-color:gray;margin-top:28px}body{margin:0;padding:0}#root,.App{margin:0;margin-top:-18px;padding:0;height:100vh;width:100vw;text-align:cente...")
 
Line 1: Line 1:
.debugheader{height:18px;background-color:gray;margin-top:28px}body{margin:0;padding:0}#root,.App{margin:0;margin-top:-18px;padding:0;height:100vh;width:100vw;text-align:center;line-height:80vh}#root,.App{font-family:sans-serif;background-color:#2e2e7c;color:#fff}#root{top:8px;width:100%;position:absolute;font-size:16px}#globalWrapper{font-size:100%;padding:0}#top_menu_14,#top_menu_inside,#top_menu_under{-webkit-box-sizing:content-box;box-sizing:content-box;height:16px}h1,h2,h3,h4,h5{margin:0;padding:0;padding-top:15px;border:none;font-size:default;font-size:27px;font-weight:700}a[href^="https://"]{padding:0}.submenu div{line-height:1.5em}#contentBox{width:100%;height:-webkit-max-content;height:-moz-max-content;height:max-content;padding:0;position:absolute;top:10px;background:#c6c6c6}#contentBox,li,ul{margin:0;line-height:normal}li,ul{list-style-type:none;list-style-image:none;display:block}*,.mw-content-ltr ul,.mw-content-rtl .mw-content-ltr ul{margin:0;padding:0}*{-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none}body{font-size:16px}#top_menu_inside ul a{line-height:1.5em}.App{text-align:center}.App-logo{-webkit-animation:App-logo-spin infinite 20s linear;animation:App-logo-spin infinite 20s linear;height:80px}.App-header{background-color:#222;height:150px;padding:20px;color:#fff}.App-title{font-size:1.5em}.App-intro{font-size:large}@-webkit-keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes App-logo-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
+
:root {
/*# sourceMappingURL=main.b3b4ee1b.css.map*/
+
    --headerTagColor: white;
 +
    --mainColor: white;
 +
    --debugHeaderColor: gray;
 +
}
 +
 
 +
.debugheader {
 +
    height: 18px;
 +
    background-color: var(--debugHeaderColor);
 +
    margin-top: 28px;
 +
}
 +
 
 +
body {
 +
    margin: 0;
 +
    padding: 0;
 +
}
 +
 
 +
.App,
 +
#root {
 +
    margin: 0px;
 +
    margin-top: -18px;
 +
    padding: 0;
 +
    height: 100vh;
 +
    font-family: sans-serif;
 +
    width: 100vw;
 +
    text-align: center;
 +
    background-color: rgb(46, 46, 124);
 +
    color: var(--mainColor);
 +
    line-height: 80vh;
 +
    /* temporary */
 +
}
 +
 
 +
#root {
 +
    top: 8px;
 +
    width: 100%;
 +
    position: absolute;
 +
    background-color: rgb(46, 46, 124);
 +
    color: var(--mainColor);
 +
    font-size: 16px;
 +
    font-family: sans-serif;
 +
}
 +
 
 +
/* Wiki overrides */
 +
 
 +
#globalWrapper {
 +
    font-size: 100%;
 +
    padding: 0;
 +
}
 +
 
 +
#top_menu_under,
 +
#top_menu_14,
 +
#top_menu_inside {
 +
    -webkit-box-sizing: content-box;
 +
    box-sizing: content-box;
 +
    height: 16px;
 +
}
 +
 
 +
h1,
 +
h2,
 +
h3,
 +
h4,
 +
h5 {
 +
    margin: 0;
 +
    padding: 0;
 +
    padding-top: 15px;
 +
    border: none;
 +
    font-size: default;
 +
    font-size: 27px;
 +
    font-weight: bold;
 +
    color: var(--headerTagColor);
 +
}
 +
 
 +
a[href ^="https://"] {
 +
    padding: 0;
 +
}
 +
 
 +
.submenu div {
 +
    line-height: 1.5em;
 +
}
 +
 
 +
#contentBox {
 +
    width: 100%;
 +
    height: -webkit-max-content;
 +
    height: -moz-max-content;
 +
    height: max-content;
 +
    padding: 0;
 +
    margin: 0;
 +
    line-height: normal;
 +
    position: absolute;
 +
    top: 10px;
 +
    background: #C6c6c6;
 +
}
 +
 
 +
li,
 +
ul {
 +
    margin: 0;
 +
    line-height: normal;
 +
    list-style-type: none;
 +
    list-style-image: none;
 +
    display: block;
 +
}
 +
 
 +
.mw-content-ltr ul,
 +
.mw-content-rtl .mw-content-ltr ul {
 +
    margin: 0;
 +
    padding: 0;
 +
}
 +
 
 +
* {
 +
    padding: 0;
 +
    margin: 0;
 +
    -webkit-box-sizing: border-box;
 +
    box-sizing: border-box;
 +
    text-decoration: none;
 +
}
 +
 
 +
body {
 +
    font-size: 16px;
 +
}
 +
 
 +
#top_menu_inside ul a {
 +
    line-height: 1.5em;
 +
}

Revision as of 06:16, 22 April 2018

root {
   --headerTagColor: white;
   --mainColor: white;
   --debugHeaderColor: gray;

}

.debugheader {

   height: 18px;
   background-color: var(--debugHeaderColor);
   margin-top: 28px;

}

body {

   margin: 0;
   padding: 0;

}

.App,

  1. root {
   margin: 0px;
   margin-top: -18px;
   padding: 0;
   height: 100vh;
   font-family: sans-serif;
   width: 100vw;
   text-align: center;
   background-color: rgb(46, 46, 124);
   color: var(--mainColor);
   line-height: 80vh;
   /* temporary */

}

  1. root {
   top: 8px;
   width: 100%;
   position: absolute;
   background-color: rgb(46, 46, 124);
   color: var(--mainColor);
   font-size: 16px;
   font-family: sans-serif;

}

/* Wiki overrides */

  1. globalWrapper {
   font-size: 100%;
   padding: 0;

}

  1. top_menu_under,
  2. top_menu_14,
  3. top_menu_inside {
   -webkit-box-sizing: content-box;
   box-sizing: content-box;
   height: 16px;

}

h1, h2, h3, h4, h5 {

   margin: 0;
   padding: 0;
   padding-top: 15px;
   border: none;
   font-size: default;
   font-size: 27px;
   font-weight: bold;
   color: var(--headerTagColor);

}

a[href ^="https://"] {

   padding: 0;

}

.submenu div {

   line-height: 1.5em;

}

  1. contentBox {
   width: 100%;
   height: -webkit-max-content;
   height: -moz-max-content;
   height: max-content;
   padding: 0;
   margin: 0;
   line-height: normal;
   position: absolute;
   top: 10px;
   background: #C6c6c6;

}

li, ul {

   margin: 0;
   line-height: normal;
   list-style-type: none;
   list-style-image: none;
   display: block;

}

.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {

   margin: 0;
   padding: 0;

}

  • {
   padding: 0;
   margin: 0;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   text-decoration: none;

}

body {

   font-size: 16px;

}

  1. top_menu_inside ul a {
   line-height: 1.5em;

}