73 lines
935 B
CSS
73 lines
935 B
CSS
|
body {
|
||
|
font-family: "Open Sans", sans-serif;
|
||
|
font-size: 12pt;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
|
||
|
th {
|
||
|
height: 50px;
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
padding-left: 30px;
|
||
|
list-style-type: square;
|
||
|
margin-bottom: 50px;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
padding-left: 15px;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
width: 200px;
|
||
|
border: none;
|
||
|
border-bottom: 2px solid black;
|
||
|
font-size: 12pt;
|
||
|
}
|
||
|
|
||
|
input.button {
|
||
|
background-color: #eeeeee;
|
||
|
color: black;
|
||
|
padding: 5px 10px;
|
||
|
text-align: center;
|
||
|
text-decoration: none;
|
||
|
display: inline-block;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
input.button:hover, input.button:active {
|
||
|
background-color: #e7e7e7;
|
||
|
}
|
||
|
|
||
|
idWTForm {
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
a:link, a:visited {
|
||
|
background-color: #eeeeee;
|
||
|
color: black;
|
||
|
padding: 5px 10px;
|
||
|
text-align: center;
|
||
|
text-decoration: none;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
|
||
|
a:hover, a:active {
|
||
|
background-color: #e7e7e7;
|
||
|
}
|
||
|
|
||
|
a.clDelete {
|
||
|
}
|
||
|
|