tellform/public/modules/forms/css/form.css

55 lines
1.1 KiB
CSS
Raw Normal View History

2015-06-30 08:54:00 +00:00
/* Styles for form list view (/forms) */
2015-06-29 22:51:29 +00:00
2015-06-30 08:54:00 +00:00
.form-item.row {
text-align: center;
border-bottom: 4px inset #ccc;
background-color: #eee;
width: 180px;
height: 215px;
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row.create-new {
border-bottom: 4px inset #ccc;
2015-07-01 23:14:39 +00:00
background-color: rgb(131,131,131);
2015-06-30 08:54:00 +00:00
color: white;
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row:hover, .form-item.row.create-new:hover {
border-bottom: 6px inset #ccc;
2015-06-30 10:00:23 +00:00
background-color: #d9d9d9;
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row.create-new:hover {
2015-06-30 10:00:23 +00:00
/*color: #eee;*/
background-color: rgb(81,81,81);
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row > .title-row{
position: relative;
top: 15px;
padding-top:3em;
padding-bottom:3.65em;
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row > .title-row h4 {
font-size: 1.3em;
}
2015-06-29 22:51:29 +00:00
2015-06-30 08:54:00 +00:00
.form-item.row.create-new > .title-row{
padding: 0;
/*margin-top:1em; */
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row.create-new > .title-row h4 {
font-size: 7em;
}
2015-06-29 22:51:29 +00:00
2015-06-30 08:54:00 +00:00
.form-item.row > .details-row{
margin-top: 3.2em;
2015-06-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row > .details-row small {
font-size: 0.65em;
}
.form-item.row.create-new > .details-row small {
font-size: 0.95em;
}