master.css 652 Bytes
Newer Older
1 2 3 4 5
html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;    
maximXbs's avatar
maximXbs committed
6
    border-radius: 35px;
7
    overflow: hidden;
maximXbs's avatar
maximXbs committed
8
    font-family: sans-serif;
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
}

body{
    background-image: url(../img/bg.png);
}

h1{
    font-size:18px;
    margin-bottom:20px;
    margin-top:0px;
}

#ub-widget{
    width: 100%;
    height: 100%;    
    min-height: 180px;
    overflow: auto;
    color: white;
    word-wrap: break-word;
}

input{
    font-size: 14pt;
}

.inputbox{
    width:50px;
}

button{
    width: 80px;
}

42 43 44 45 46 47
textarea{
    font: 32px tahoma;
    letter-spacing: 0.1em;
    width: 98%;
    min-height: 160px;
    resize: vertical;
48 49 50
}

.inputwrap{
51

52
}