T201 updated gitignore
This commit is contained in:
277
target/classes/static/css/main.css
Normal file
277
target/classes/static/css/main.css
Normal file
@@ -0,0 +1,277 @@
|
||||
#container {
|
||||
width: 1400px;
|
||||
margin-left: 15px;
|
||||
margin-top: 30px;
|
||||
min-height: 700px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#toolName {
|
||||
width: 850px;
|
||||
font-weight: 700;
|
||||
font-size: 42px;
|
||||
margin-bottom: 40px;
|
||||
/*text-align: center;*/
|
||||
/*padding: 50px;*/
|
||||
}
|
||||
|
||||
.articleHead {
|
||||
font-size: 32px;
|
||||
font-weight: 400;
|
||||
height: 70px;
|
||||
/*padding: 10px;*/
|
||||
}
|
||||
|
||||
#itemData {
|
||||
min-height: 1736px;
|
||||
float: left;
|
||||
width: 720px;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#optional {
|
||||
width: 100%;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#optional:hover {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
#advanced {
|
||||
width: 100%;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
/*TODO create tab menu style in common.css*/
|
||||
|
||||
#advancedMenu {
|
||||
margin-top: 30px;
|
||||
width: 720px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.advancedMenuTab {
|
||||
width: 340px;
|
||||
height: 30px;
|
||||
float: left;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
border-bottom: #f0f0f0 1px solid;
|
||||
}
|
||||
|
||||
.advancedMenuTab:hover {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.advancedMenuTabSelected {
|
||||
width: 340px;
|
||||
height: 30px;
|
||||
float: left;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-size: 24px;
|
||||
background: gray;
|
||||
color: white;
|
||||
font-weight: 700;
|
||||
border-bottom: gray 1px solid;
|
||||
}
|
||||
|
||||
#messageFields {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.fieldFloater {
|
||||
float: left;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#functionBar {
|
||||
}
|
||||
|
||||
/*TODO add inactive state of the button*/
|
||||
|
||||
.buttonSpacer {
|
||||
height: 30%;
|
||||
}
|
||||
|
||||
.functionBarButton {
|
||||
clear: both;
|
||||
width: 263px;
|
||||
height: 40%;
|
||||
margin-left: 80px;
|
||||
right: 0;
|
||||
/*margin: auto;*/
|
||||
font-size: 24px;
|
||||
padding: 12px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.
|
||||
|
||||
#link {
|
||||
width: 750px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
/*TODO add style to common*/
|
||||
#messageLink {
|
||||
width: 630px;
|
||||
padding: 10px;
|
||||
font-size: 14px;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
#messageLink a {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
|
||||
#messageLink a:hover {
|
||||
color: #d6860d !important;
|
||||
}
|
||||
|
||||
.fieldDefault {
|
||||
width: 300px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.fieldText {
|
||||
width: 630px;
|
||||
padding: 10px;
|
||||
height: 296px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
#httpStatus {
|
||||
resize: none;
|
||||
}
|
||||
|
||||
#selectMenu {
|
||||
min-height: 1736px;
|
||||
float: left;
|
||||
width: 200px;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.menuItem {
|
||||
float: left;
|
||||
width: 150px;
|
||||
padding: 10px;
|
||||
height: 42px;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
margin-bottom: 5px;
|
||||
border: 1px solid lightgray;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#iconPlus {
|
||||
text-align: center;
|
||||
font-size: 28px;
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
.menuItem:hover {
|
||||
background: lightgray;
|
||||
color: white;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.menuItemSelected {
|
||||
float: left;
|
||||
width: 150px;
|
||||
padding: 10px;
|
||||
height: 42px;
|
||||
font-size: 14px;
|
||||
text-align: left;
|
||||
margin-bottom: 5px;
|
||||
border: 1px solid lightgray;
|
||||
background: gray;
|
||||
color: white;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/*TODO add style to general stylesheet. Gray if inactive red if hover*/
|
||||
.btn-del-MenuItem {
|
||||
float: left;
|
||||
font-size: 24px;
|
||||
color: lightgray;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-del-MenuItem:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#headerTable {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.tableHead {
|
||||
width: 240px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/*TODO gray out key value in table*/
|
||||
.tableField {
|
||||
height: 20px;
|
||||
padding: 5px;
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
#mockIntroTip {
|
||||
margin-top: 10px;
|
||||
text-align: justify;
|
||||
padding: 5px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.btn-function-table {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/*TODO add to general styles. Gray if inactive green if hover*/
|
||||
.btn-table-add {
|
||||
color: lightgray;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-table-add:hover {
|
||||
color: green;
|
||||
}
|
||||
|
||||
|
||||
.btn-table-remove {
|
||||
color: lightgray;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn-table-remove:hover {
|
||||
color: red;
|
||||
}
|
||||
|
||||
/*TODO add to commons*/
|
||||
input:focus {
|
||||
box-shadow: 0 0 5px rgba(81, 203, 238);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
|
||||
/*TODO add to commons*/
|
||||
.btn-inactive {
|
||||
color: #f1f1f1 !important;
|
||||
background: #999999 !important;
|
||||
cursor: default !important;
|
||||
}
|
||||
53
target/classes/static/css/tooltip.css
Normal file
53
target/classes/static/css/tooltip.css
Normal file
@@ -0,0 +1,53 @@
|
||||
p#tooltipText {
|
||||
/* /* padding: 20px; */
|
||||
width: 200px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
label, input, select, textarea {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#tooltip {
|
||||
border-radius: 15px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
padding-bottom: 20px;
|
||||
margin-top: 20px;
|
||||
border: 2px solid rgba(155, 165, 160, 0.507);
|
||||
width: 350px;
|
||||
/* width: 70%; */
|
||||
/* background-color: rgb(68, 158, 116); */
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
.collapsible {
|
||||
/*background-color: rgba(155, 165, 160, 0.507);*/
|
||||
color: rgb(44, 44, 44);
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
width: 100%;
|
||||
/*border: none;*/
|
||||
/*outline: none;*/
|
||||
/*max-height: 0;*/
|
||||
/*overflow: hidden;*/
|
||||
/*transition: max-height 0.2s ease-out;*/
|
||||
}
|
||||
|
||||
/*.active, .collapsibleActive:hover {*/
|
||||
/* background-color: rgb(85, 85, 85);*/
|
||||
/*}*/
|
||||
|
||||
.collapsibleData {
|
||||
padding: 0 18px;
|
||||
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
|
||||
.fixed {
|
||||
position: fixed;
|
||||
/*top: 50%;*/
|
||||
/*left: 50%;*/
|
||||
margin-top: 100px;
|
||||
margin-left: 950px;
|
||||
}
|
||||
43
target/classes/static/css/wojtas.css
Normal file
43
target/classes/static/css/wojtas.css
Normal file
@@ -0,0 +1,43 @@
|
||||
p#tooltipText {
|
||||
/* /* padding: 20px; */
|
||||
width: 200px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
div#tooltip {
|
||||
border-radius: 15px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
padding-bottom: 20px;
|
||||
margin-top: 160px;
|
||||
border: 2px solid rgba(155, 165, 160, 0.507);
|
||||
float: right;
|
||||
width: 40%;
|
||||
/* width: 70%; */
|
||||
/* background-color: rgb(68, 158, 116); */
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.collapsible {
|
||||
background-color: rgba(155, 165, 160, 0.507);
|
||||
color: rgb(44, 44, 44);
|
||||
cursor: pointer;
|
||||
padding: 18px;
|
||||
width: 100%;
|
||||
border: none;
|
||||
text-align: center;
|
||||
outline: none;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.active, .collapsibleActive:hover {
|
||||
background-color: rgb(85, 85, 85);
|
||||
}
|
||||
|
||||
.collapsibleData {
|
||||
padding: 0 18px;
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: max-height 0.2s ease-out;
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
Reference in New Issue
Block a user