177 lines
2.9 KiB
CSS
177 lines
2.9 KiB
CSS
body {
|
|
font-family: Verdana,Arial,sans-serif;
|
|
font-weight: bold;
|
|
margin-left: 10px;
|
|
}
|
|
article {
|
|
width: 600px;
|
|
margin: 100px auto;
|
|
height: 100%;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
margin: auto;
|
|
bottom: 0;
|
|
font-weight: normal;
|
|
}
|
|
#myCanvas {
|
|
border: dotted 1px;
|
|
background-color: lightgray;
|
|
}
|
|
.text {
|
|
margin-bottom: 8px;
|
|
font-weight: bold;
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.menu {
|
|
display: inline-block;
|
|
margin-right: 50px;
|
|
margin-bottom: 50px;
|
|
margin: auto;
|
|
padding: 10px;
|
|
border: 2px solid black;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
a{
|
|
color: #2196F3;
|
|
text-decoration: none;
|
|
display: inline;
|
|
}
|
|
|
|
|
|
/*choosing thing*/
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 34px;
|
|
float: right;
|
|
}
|
|
|
|
.switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: #ccc;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
.slider:before {
|
|
position: absolute;
|
|
content: "";
|
|
height: 26px;
|
|
width: 26px;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
background-color: white;
|
|
-webkit-transition: .4s;
|
|
transition: .4s;
|
|
}
|
|
|
|
input:checked + .slider {
|
|
background-color: #2196F3;
|
|
}
|
|
|
|
input:focus + .slider {
|
|
box-shadow: 0 0 1px #2196F3;
|
|
}
|
|
|
|
input:checked + .slider:before {
|
|
-webkit-transform: translateX(26px);
|
|
-ms-transform: translateX(26px);
|
|
transform: translateX(26px);
|
|
}
|
|
|
|
.slider.round {
|
|
border-radius: 34px;
|
|
}
|
|
|
|
.slider.round:before {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
/*segédlet*/
|
|
#myBtn{
|
|
cursor:pointer;
|
|
margin-top: 40px;
|
|
}
|
|
.modal {
|
|
display: none; /* Hidden by default */
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1; /* Sit on top */
|
|
padding-top: 100px; /* Location of the box */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
overflow: auto; /* Enable scroll if needed */
|
|
background-color: rgb(0,0,0); /* Fallback color */
|
|
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
|
|
}
|
|
|
|
.modal-content {
|
|
position: relative;
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 0;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
|
-webkit-animation-name: animatetop;
|
|
-webkit-animation-duration: 0.4s;
|
|
animation-name: animatetop;
|
|
animation-duration: 0.4s
|
|
}
|
|
|
|
@-webkit-keyframes animatetop {
|
|
from {top:-300px; opacity:0}
|
|
to {top:0; opacity:1}
|
|
}
|
|
|
|
@keyframes animatetop {
|
|
from {top:-300px; opacity:0}
|
|
to {top:0; opacity:1}
|
|
}
|
|
|
|
.close {
|
|
color: white;
|
|
float: right;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.close:hover,
|
|
.close:focus {
|
|
color: #000;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 2px 16px;
|
|
background-color: #2196F3;
|
|
color: white;
|
|
}
|
|
|
|
.modal-body {padding: 2px 16px;}
|
|
|
|
.modal-footer {
|
|
padding: 2px 16px;
|
|
background-color: #2196F3;
|
|
color: white;
|
|
}
|