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

54 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;
background-color: rgb(51,51,51);
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-29 22:51:29 +00:00
}
2015-06-30 08:54:00 +00:00
.form-item.row.create-new:hover {
color: rgb(51, 122, 183);
background-color: rgb(238, 238, 238);
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;
}