This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
vincennes-2014/static/css/style.css

134 lines
2.3 KiB
CSS

/* theme derived and inspired by TerraFirma
* <http://www.oswd.org/design/information/id/3557/>
*/
div.errors {
margin: 0;
padding: 0;
color: #e80404;
list-style: none;
}
.helptext {
display: block;
}
/* messages blocks */
ul.messages > li {
display: block;
padding: 3px;
padding: 10px;
border: 1px solid black;
margin-top: 10px;
border-radius: 4px;
}
ul.messages > li.info {
}
ul.messages > li.warning {
background: #ffc470;
color: black;
}
ul.messages >li.error {
background: #ff665e;
color: black;
}
.CheckboxWidget .content .error {
position: absolute;
top: -17px;
}
/* log table on error pages */
.a2-log-line:nth-child(odd) {
background: lightgrey;
}
.a2-log-time, .a2-log-level, .a2-log-message {
vertical-align: top;
padding: 5px;
}
.a2-log-message {
white-space: pre-wrap;
}
p.form-field-required label:after {
content: " *";
color: red;
}
/************************ vincennes ********************/
#profile dl dt, #profile dl dd {
min-width: 50%;
float: left;
padding: 5px;
font-size : 14px;
border-bottom: 1px solid #eeeeee;
}
#credential p:focus, #profile p:focus {
color: #FFF;
background-color: #ab1565;
border-color: #951258;
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}
#profile p a, #credential p a {
color: #FFF;
}
#profile p, #credential p {
display: inline-block;
margin: 20px 5px 0px 5px;
font-weight: 400;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid rgba(0, 0, 0, 0);
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
color: #FFF;
background-color: #d91a80;
border-color: #ab1565;
}
#credential h4 {
display: none;
}
.infonotice {
background-color: #31abe5;
color: #fff;
font-weight: bold;
padding: 5px;
border-radius: 4px;
}
.errorlist {
background: #fd6;
border: 1px solid #ffae15;
margin: 1em 1em 1em 1em;
padding: 5px;
border-radius: 4px;
text-align: left;
margin: 0px;
}
@media (max-width: 767px) {
#profile p, #credential p {
width: 100%;
}
}