remember/sims/leitner/leitner.css

101 lines
1.6 KiB
CSS
Raw Normal View History

2018-09-18 17:17:42 +00:00
/* FONT FACE */
@font-face {
font-family: "PatrickHand";
font-style: normal;
font-weight: 400;
src: url(../../css/PatrickHand-Regular.ttf) format('truetype');
}
body{
margin: 0;
font-family: "PatrickHand", Helvetica, Arial;
color: #000;
padding: 0 10px;
background: #eee;
letter-spacing: 1px;
2018-09-26 19:59:45 +00:00
font-size: 25px;
2018-09-18 17:17:42 +00:00
}
#content{
background: #fff;
2018-09-26 19:59:45 +00:00
width: 500px;
padding: 50px;
padding-top: 0px;
2018-09-18 17:17:42 +00:00
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
2018-09-26 19:59:45 +00:00
#ui{
position: absolute;
2018-09-18 17:17:42 +00:00
width: 500px;
2018-09-26 19:59:45 +00:00
top:40px;
left:50px;
2018-09-18 17:17:42 +00:00
}
#default_labels{
display:none;
2018-09-26 19:59:45 +00:00
}
#label_stats{
text-align: center;
}
#sliders{
font-size: 20px;
line-height: 1em;
margin-top: 25px;
}
#MODE2_time, #MODE2_sliders{
display:none;
}
2018-10-17 15:37:43 +00:00
button{
font-size:18px;
font-family: "PatrickHand", Helvetica, Arial;
background: #fff;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
position: relative;
}
button:focus {
outline:0;
}
button:hover{
top:-2px;
}
2018-10-24 21:32:43 +00:00
button:active{
color:#000;
}
2018-10-17 15:37:43 +00:00
input[type=range]{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 2px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
margin-top: 20px;
2018-10-17 20:37:01 +00:00
margin-bottom: 20px;
2018-10-17 15:37:43 +00:00
}
input[type=range]::-webkit-slider-thumb{
-webkit-appearance: none;
appearance: none;
width: 15px;
height: 35px;
border-radius: 8px;
background: #333;
cursor: pointer;
2018-10-24 21:32:43 +00:00
border:none;
2018-10-17 15:37:43 +00:00
}
input[type=range]::-moz-range-thumb{
width: 15px;
height: 35px;
border-radius: 8px;
background: #333;
cursor: pointer;
2018-10-24 21:32:43 +00:00
border:none;
2018-10-17 15:37:43 +00:00
}