Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
ok this is taking a while...
Browse files Browse the repository at this point in the history
  • Loading branch information
polygonnedpotato committed Apr 1, 2021
1 parent b024ccb commit 3a6ec42
Show file tree
Hide file tree
Showing 21 changed files with 8,230 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/* latin-ext */
@font-face {
font-family: 'Source Code Pro';
font-style: normal;
font-weight: 400;
src: local('Source Code Pro'), local('SourceCodePro-Regular'), url('/fonts/SourceCodeProExt.woff2') format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Source Code Pro';
font-style: normal;
font-weight: 400;
src: local('Source Code Pro'), local('SourceCodePro-Regular'), url('/fonts/SourceCodePro.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
107 changes: 107 additions & 0 deletions TeamCode/build/intermediates/merged_assets/debug/out/css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/*Copyright (c) 2017 DEKA Research and Development*/

/*All rights reserved.*/

/*Redistribution and use in source and binary forms, with or without modification, are permitted*/
/*(subject to the limitations in the disclaimer below) provided that the following conditions are*/
/*met:*/

/*Redistributions of source code must retain the above copyright notice, this list of conditions*/
/*and the following disclaimer.*/

/*Redistributions in binary form must reproduce the above copyright notice, this list of conditions*/
/*and the following disclaimer in the documentation and/or other materials provided with the*/
/*distribution.*/

/*Neither the name of DEKA Research and Development nor the names of contributors may be used to*/
/*endorse or promote products derived from this software without specific prior written permission.*/

/*NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS*/
/*SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED*/
/*WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS*/
/*FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE*/
/*LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES*/
/*(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,*/
/*OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN*/
/*CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF*/
/*THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/

html, body {
height: 100%;
margin: 0;
}
body {
font-family: sans-serif;
overflow: hidden;
margin: 0;
}
table {
border-collapse: collapse;
}
button {
font-size: small;
cursor: pointer;
}
.file_label{
margin-left: .7%;
}
.dialog{
border: 4px solid black;
max-width: 70%;
min-width: 70%;
}
.center_text{
text-align: center;
}
.center_element{
display: block;
margin-left: auto;
margin-right: auto;
}
.top {
background-color: #003974;
}
.logo_td {
padding: 5px;
}
.blank_td {
background-color: white;
padding: 3px;
}
.page_title {
background-color: #0066B3;
color: white;
padding: 5px;
font-weight: bold;
}
.half_button {
font-size: xx-large;
cursor: pointer;
margin-left: .5%;
width: 49%;
min-height: 25%;
max-height: 25%;
}
.full_button {
font-size: xx-large;
cursor: pointer;
margin-left: .7%;
width: 98.6%;
min-height: 25%;
max-height: 25%;
}
.content {
height: 100%;
width: 100%;
overflow: scroll;
}
.full_input{
size: 10000px;
}
#uploadUpdateDialog{
min-height: 70%;
min-width: 80%;
}
.btn{
cursor: hand;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
/**
* Styles used in FtcBlocksProjects.html, FtcBlocks.html, FtcSounds.html,
* FtcOfflineBlocksProjects.html, and FtcOfflineBlocks.html
*/

/* Element-level rules */

html, body {
height: 100%;
margin: 0;
}

body {
font-family: sans-serif;
overflow: hidden;
margin: 0px;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

button {
font-size: small;
cursor: pointer;
color: black;
}

button:disabled {
color: gray;
}

input[type=text], select {
height: 20px;
}

/* Table layout rules */

.scrolling_table_container {
height: 200px;
overflow: auto;
background: white;
padding-left: 5px;
padding-right: 5px;
}

.buttons_td {
padding: 5px;
}

.blank_td {
background-color: white;
padding: 1px;
}

.my_projects_td, .my_sounds_td {
color: white;
padding: 5px;
font-weight: bold;
}

.header_tr {
background: #eeeeee;
}

.header_td {
font-family: sans-serif;
font-size: small;
cursor: pointer;
}

.project_row_tr {
color: white;
font-weight: bold;
}

.project_row_td {
padding: 5px;
}

.project_row_checkbox.project_row_checkbox { /* hack: we chain the selector with itself to increase specificity */
margin: 0 ;
vertical-align: middle;
}

.project_tr, .sound_tr {
border-bottom: 1pt solid white;
}

/* Main Blocks project layout rules (uses flexbox) */

.horizontal_area {
display: flex;
flex-direction: row;
background-color: white;
}

.vertical_area {
display: flex;
flex-direction: column;
background-color: white;
}

.fill_area {
flex-grow: 4;
}

.parent_area {
margin: 2px;
}

.no_min_height {
min-height:0;
}

.no_min_width {
min-width: 0;
}

.content_border {
border: 1px solid #909090; /* Same color as gutter */
}

.banner {
display: flex;
width: 100%;
background: slategrey;
padding: 5px;
margin-bottom: 2px;
align-items: center;
justify-content: center;
}

.banner_text {
color: white;
margin-right: 10px;
font-size: 1.7rem;
}

/* Modal dialog rules */

.modal_dialog {
display: none;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.1);
}

.modal_dialog_container {
position: absolute;
top: 40%;
width: 100%;
text-align: center;
}

.modal_dialog_content {
display: inline-block;
text-align: left;
padding: 16px;
border: 3px solid #000;
background-color: #fefefe;
}

/* Text formatting rules */

a.help {
color: white;
}

#saveSuccess {
color: #ffffff;
}

#saveFailure {
color: #ffffff;
padding: 0px 10px 0px 10px;
background-color: #f0ad4e;
border: 1px solid transparent;
border-radius: 4px;
}

.error_message {
color: red;
}

.project_name, .sound_name {
font-family: sans-serif;
font-weight: bold;
cursor: pointer;
}

.not_bold {
font-weight: normal;
}

/* Java pane rules */

#javaCodeHeading {
padding-left: 4px;
font-weight: bold;
color: white;
}

#javaContentContainer {
overflow:auto;
margin-top: 2px;
padding: 2px 4px;
}

#javaContent {
display: block;
overflow: visible;
padding:0;
border: none;
background-color: white;
color: black;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 13px;
page-break-inside: avoid;
white-space: pre;
word-break: break-all;
word-wrap: break-word;
}

/* CSS overrides for third-party libraries */

svg.blocklyWsDragSurface {
overflow: visible;
}

/* Add border between toolbox and Blocks program */
.blocklyToolboxDiv {
border-right: 1px solid #909090; /* Same color as content_border */
}

/* split.js gutter style */
.gutter.gutter-horizontal {
cursor: col-resize;
background-color: #909090; /* Same color as content_border */
margin: 0 2px;
}
Loading

0 comments on commit 3a6ec42

Please sign in to comment.