You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
495 B

/*########################################
Basic Style
########################################*/
.center {
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.floatleft {
float: left;
}
.floatright {
float: right;
}
.clear {
clear:both;
}
.s-hidden {
visibility: hidden;
}
.nodisplay {
display: none;
}
/**
Table
**/
.table {
display: table;
width: 100%;
}
.tr {
display: table-row;
}
.td {
display: table-cell;
}