|
|
@ -128,6 +128,8 @@ p, pre, td, a, table, tr {
|
|
|
|
|
|
|
|
|
|
|
|
body.html {
|
|
|
|
body.html {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Main page
|
|
|
|
.page {
|
|
|
|
.page {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-left: auto;
|
|
|
@ -138,6 +140,9 @@ body.html {
|
|
|
|
|
|
|
|
|
|
|
|
&.first {
|
|
|
|
&.first {
|
|
|
|
margin-top: ~"calc(100vh - 50px)";
|
|
|
|
margin-top: ~"calc(100vh - 50px)";
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
margin-top: 0;;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.even {
|
|
|
|
&.even {
|
|
|
|
background: darken(@base, 10%);
|
|
|
|
background: darken(@base, 10%);
|
|
|
@ -147,26 +152,40 @@ body.html {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
.left {
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
width: 45%;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
left: 0; //@main-border-width;
|
|
|
|
left: 0; //@main-border-width;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
.right {
|
|
|
|
|
|
|
|
left: 10%; //@main-border-width;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
padding: 10px 5vh;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&>div{
|
|
|
|
padding: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
width: 45%;
|
|
|
|
width: 45%;
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
left: 10%; //@main-border-width;
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&:not(.image) {
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
.image {
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
p {
|
|
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: justify;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -310,6 +329,38 @@ body.html {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-container {
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
transform: initial;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
width: 90%;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#userForm, #data {
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
transform: initial;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#userForm {
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
border: 1px solid #888;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: @media-not-big) {
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
background: #aaa;
|
|
|
|
|
|
|
|
top: -10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
.buttons {
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|