first commit
This commit is contained in:
16
web/static/Chart.bundle.min.js
vendored
Normal file
16
web/static/Chart.bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
web/static/logo.gif
Normal file
BIN
web/static/logo.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 254 KiB |
223
web/static/style.css
Normal file
223
web/static/style.css
Normal file
@@ -0,0 +1,223 @@
|
||||
body {
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
font-family: helvetica, arial, verdana, sans-serif;
|
||||
text-align:center;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
|
||||
.not-underline{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
|
||||
.tacts {
|
||||
border:none;
|
||||
}
|
||||
.qard {
|
||||
text-align:center;
|
||||
width:100%;
|
||||
padding:20px;
|
||||
border:none;
|
||||
}
|
||||
.miniform {
|
||||
width:50%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
.dashform {
|
||||
width:25%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
#affiche, #pool{
|
||||
vertical-align: middle;
|
||||
text-align:center;
|
||||
width:90%;
|
||||
margin: 0 auto;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0px;
|
||||
border:none;
|
||||
}
|
||||
#affiche td, #affiche th {
|
||||
border: none;
|
||||
padding: 2px;
|
||||
}
|
||||
#affiche tr:nth-child(even){
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
#affiche tr:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
#affiche th {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 12px;
|
||||
text-align: center;
|
||||
background-color: #336676;
|
||||
color: white;
|
||||
}
|
||||
.login {
|
||||
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
||||
width:300px;
|
||||
height:400px;
|
||||
padding:50px;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#alert {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
#consolemessage {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5)>
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
width:100px;
|
||||
background: Transparent;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
cursor: pointer;
|
||||
margin:auto;
|
||||
padding: 5px 5px;
|
||||
}
|
||||
.space {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 20px 0;
|
||||
}
|
||||
span {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 5px 0;
|
||||
}
|
||||
.deliso{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
float:right;
|
||||
padding: 5px 0;
|
||||
}
|
||||
select, option {
|
||||
width: 243px;
|
||||
padding: 12px 20px;
|
||||
margin: 8px 0;
|
||||
}
|
||||
div#loading {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
display: none;
|
||||
cursor: wait;
|
||||
top:300px;
|
||||
}
|
||||
.logout {
|
||||
text-align: right;
|
||||
width:100%;
|
||||
text-decoration:none;
|
||||
height:33px;
|
||||
}
|
||||
.logout a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.logout ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
position: -webkit-sticky; /* Safari */
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
||||
}
|
||||
.logout li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
.logout li a {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.logout li a:hover {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
.logout .active {
|
||||
background-color: #BB8FCE;
|
||||
}
|
||||
.modal {
|
||||
margin:auto;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgb(0,0,0);
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin:40px auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 90%;
|
||||
}
|
||||
.close {
|
||||
color: #aaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close:hover, .close:focus {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.snaplist{
|
||||
}
|
||||
|
||||
225
web/static/style.css.black
Normal file
225
web/static/style.css.black
Normal file
@@ -0,0 +1,225 @@
|
||||
body {
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
font-family: helvetica, arial, verdana, sans-serif;
|
||||
text-align:center;
|
||||
min-height: 100% !important;
|
||||
background-color:black;
|
||||
color:white;
|
||||
}
|
||||
|
||||
.not-underline{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
|
||||
.tacts {
|
||||
border:none;
|
||||
}
|
||||
.qard {
|
||||
text-align:center;
|
||||
width:100%;
|
||||
padding:20px;
|
||||
border:none;
|
||||
}
|
||||
.miniform {
|
||||
width:50%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
.dashform {
|
||||
width:25%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
#affiche, #pool{
|
||||
vertical-align: middle;
|
||||
text-align:center;
|
||||
width:90%;
|
||||
margin: 0 auto;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0px;
|
||||
border:none;
|
||||
}
|
||||
#affiche td, #affiche th {
|
||||
border: none;
|
||||
padding: 2px;
|
||||
}
|
||||
#affiche tr:nth-child(even){
|
||||
background-color: black;
|
||||
}
|
||||
#affiche tr:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
#affiche th {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 12px;
|
||||
text-align: center;
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
.login {
|
||||
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
||||
width:300px;
|
||||
height:400px;
|
||||
padding:50px;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#alert {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
#consolemessage {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5)>
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
width:100px;
|
||||
background: Transparent;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
cursor: pointer;
|
||||
margin:auto;
|
||||
padding: 5px 5px;
|
||||
}
|
||||
.space {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 20px 0;
|
||||
}
|
||||
span {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 5px 0;
|
||||
}
|
||||
.deliso{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
float:right;
|
||||
padding: 5px 0;
|
||||
}
|
||||
select, option {
|
||||
width: 243px;
|
||||
padding: 12px 20px;
|
||||
margin: 8px 0;
|
||||
}
|
||||
div#loading {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
display: none;
|
||||
cursor: wait;
|
||||
top:300px;
|
||||
}
|
||||
.logout {
|
||||
text-align: right;
|
||||
width:100%;
|
||||
text-decoration:none;
|
||||
height:33px;
|
||||
}
|
||||
.logout a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.logout ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: white;
|
||||
position: -webkit-sticky; /* Safari */
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
||||
}
|
||||
.logout li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
.logout li a {
|
||||
display: block;
|
||||
color: black;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.logout li a:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
.logout .active {
|
||||
background-color: #BB8FCE;
|
||||
}
|
||||
.modal {
|
||||
margin:auto;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgb(0,0,0);
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin:40px auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 90%;
|
||||
}
|
||||
.close {
|
||||
color: #aaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close:hover, .close:focus {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.snaplist{
|
||||
}
|
||||
|
||||
223
web/static/style.css.white
Normal file
223
web/static/style.css.white
Normal file
@@ -0,0 +1,223 @@
|
||||
body {
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
font-family: helvetica, arial, verdana, sans-serif;
|
||||
text-align:center;
|
||||
min-height: 100% !important;
|
||||
}
|
||||
|
||||
.not-underline{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
|
||||
.tacts {
|
||||
border:none;
|
||||
}
|
||||
.qard {
|
||||
text-align:center;
|
||||
width:100%;
|
||||
padding:20px;
|
||||
border:none;
|
||||
}
|
||||
.miniform {
|
||||
width:50%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
.dashform {
|
||||
width:25%;
|
||||
text-align:center;
|
||||
float:left;
|
||||
padding:20px;
|
||||
}
|
||||
#affiche, #pool{
|
||||
vertical-align: middle;
|
||||
text-align:center;
|
||||
width:90%;
|
||||
margin: 0 auto;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0px;
|
||||
border:none;
|
||||
}
|
||||
#affiche td, #affiche th {
|
||||
border: none;
|
||||
padding: 2px;
|
||||
}
|
||||
#affiche tr:nth-child(even){
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
#affiche tr:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
#affiche th {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 12px;
|
||||
text-align: center;
|
||||
background-color: #336676;
|
||||
color: white;
|
||||
}
|
||||
.login {
|
||||
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
||||
width:300px;
|
||||
height:400px;
|
||||
padding:50px;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#alert {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
#consolemessage {
|
||||
width:50%;
|
||||
padding:10px;
|
||||
margin:auto;
|
||||
text-align:center;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5)>
|
||||
border:solid 1px;
|
||||
background-color:white;
|
||||
border-radius: 6px;
|
||||
letter-spacing:2px;
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
width:100px;
|
||||
background: Transparent;
|
||||
box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1), inset 0px 0.5px 0.5px rgba(255, 255, 255, 0.5), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.12);
|
||||
cursor: pointer;
|
||||
margin:auto;
|
||||
padding: 5px 5px;
|
||||
}
|
||||
.space {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 20px 0;
|
||||
}
|
||||
span {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 5px 0;
|
||||
}
|
||||
.deliso{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
float:right;
|
||||
padding: 5px 0;
|
||||
}
|
||||
select, option {
|
||||
width: 243px;
|
||||
padding: 12px 20px;
|
||||
margin: 8px 0;
|
||||
}
|
||||
div#loading {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
display: none;
|
||||
cursor: wait;
|
||||
top:300px;
|
||||
}
|
||||
.logout {
|
||||
text-align: right;
|
||||
width:100%;
|
||||
text-decoration:none;
|
||||
height:33px;
|
||||
}
|
||||
.logout a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.logout ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
position: -webkit-sticky; /* Safari */
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
||||
}
|
||||
.logout li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
.logout li a {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.logout li a:hover {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
.logout .active {
|
||||
background-color: #BB8FCE;
|
||||
}
|
||||
.modal {
|
||||
margin:auto;
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background-color: rgb(0,0,0);
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
.modal-content {
|
||||
background-color: #fefefe;
|
||||
margin:40px auto;
|
||||
padding: 20px;
|
||||
border: 1px solid #888;
|
||||
width: 90%;
|
||||
}
|
||||
.close {
|
||||
color: #aaa;
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close:hover, .close:focus {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.snaplist{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user