﻿body
{
    background-color:azure;
}
#szeles {
    -webkit-appearance: none; /*a böngésző beépített css-nek tiltása*/
    width: 300px;
    height: 10px;
    border-radius: 20px;
    background: #ff006e;
}
#szeles::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 20px;
    border-radius: 25%;
    border: 3px solid;
    border-color: #808080;
    background: #ffd800;
    cursor: pointer;
}
#magas {
    -webkit-appearance: none; /*a böngésző beépített css-nek tiltása*/
    width: 300px;
    height: 10px;
    border-radius: 20px;
    background: #0094ff;
}
#magas::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 20px;
    border-radius: 25%;
    border: 3px solid;
    border-color: #808080;
    background: #00ff21;
    cursor: pointer;
}
input[type=text] {
    width: 100px;
    height: 30px;
    background-color: azure;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: #ff6a00;
    border: 5px solid lightgreen;
    border-radius: 10px;
}
