eesyphp/public_html/css/style.css

85 lines
1.1 KiB
CSS
Raw Normal View History

2020-04-18 00:51:33 +02:00
/*
* Main interface components
*/
body {
2022-04-24 18:30:02 +02:00
font-family: arial, sans-serif;
color: #606060;
2020-04-18 00:51:33 +02:00
}
main[role="main"] {
2022-04-24 18:30:02 +02:00
margin-top: 1em;
2020-04-18 00:51:33 +02:00
}
a.navbar-brand img {
2022-04-24 18:30:02 +02:00
height: 27px;
2020-04-18 00:51:33 +02:00
}
#footer {
2022-04-24 18:30:02 +02:00
border-top: 1px solid #333;
margin-top: 1em;
padding-top: 1em;
2020-04-18 00:51:33 +02:00
}
#footer p {
2022-04-24 18:30:02 +02:00
font-size: 0.8em;
text-align: center;
2020-04-18 00:51:33 +02:00
}
/*
* Common helpers
*/
.center { text-align: center; }
p { text-align: justify; }
img { max-width: 100%; }
/*
* Messages/errors & fatal errors
*/
.fatal_error_msg {
2022-04-24 18:30:02 +02:00
font-size: 0.8em;
color: #777;
text-align: center;
font-style: italic;
2020-04-18 00:51:33 +02:00
}
.alert p {
2022-04-24 18:30:02 +02:00
text-align: center;
2020-04-18 00:51:33 +02:00
}
/*
* Tables
*/
th a, th a:hover {
2022-04-24 18:30:02 +02:00
color: #000;
text-decoration: none;
2020-04-18 00:51:33 +02:00
}
/*
* Forms
*/
.form-inline .form-control, .form-inline label, .form-inline input, .form-inline select, .form-inline button {
2022-04-24 18:30:02 +02:00
margin-left: 1em!important;
2020-04-18 00:51:33 +02:00
}
label.required::after {
content: " *";
}
.form-error {
2022-04-24 18:30:02 +02:00
color: #dc3545;
2020-04-18 00:51:33 +02:00
}
.invalid-feedback {
2022-04-24 18:30:02 +02:00
display: block;
2020-04-18 00:51:33 +02:00
}
span.form-control-plaintext {
2022-04-24 18:30:02 +02:00
padding-top: calc(.375rem + 1px);
padding-bottom: calc(.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
2020-04-18 00:51:33 +02:00
}