pakua-cambridge/style.css

360 lines
4.8 KiB
CSS

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
margin: 0;
padding: 0;
line-height: 1.5em;
}
a {
color: #c40000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #000;
}
ul {
margin-left: 0.6em;
padding-left: 0.6em;
margin-top: 1em;
margin-bottom: 1em;
}
p {
margin-top: 1em;
margin-bottom: 1em;
}
h1 {
text-align: center;
font-size: 1.8em;
margin: 1em 0 1em 0;
}
h2 {
font-size: 1.5em;
margin: 2em 0 1em 0;
clear: both;
}
h3 {
margin: 2em 0 1em 0;
}
h4 {
font-size: 1.2em;
}
body {
background-image: url("footer-bg.png");
background-repeat: no-repeat;
background-position: bottom;
background-size: contain;
padding: 2em;
}
body {
max-width: 60em;
margin: 0 auto;
}
#header {
display: flex;
align-items:center;
}
#header > div {
display: inline-block;
}
#logo {
width: 10em;
margin-right: 2em;
}
#logo img {
width: 100%;
height: auto;
}
#logo.center {
width: 10em;
margin-right: 2em;
}
#header ul {
display: inline-block;
list-style-type: none;
margin: 0;
}
#header li {
display: inline-block;
margin: 0.6em 0.8em 0 0;
}
#footer {
padding: 4em 0 2em 0;
}
#footer .h-card img {
float: left;
width: 9em;
height: auto;
margin-right: 1em;
}
#footer .h-card .p-name {
font-weight: bold;
margin-bottom: 0.3em;
display: block;
}
#footer .h-card .p-note {
display: block;
color: #333;
margin-bottom: 1em;
}
.grid {
display: flex;
align-items:baseline;
flex-grow: 1;
flex-wrap: wrap;
justify-content: space-evenly;
}
.grid > div {
border: 1px solid #ccc;
max-width: 18%;
display: block;
overflow: hidden;
text-align: center;
margin:0 1%;
margin-bottom: 0.6em;
}
.grid.large > div {
max-width: 48%;
}
.grid.large img {
height: 16em;
width: auto;
}
.grid img {
width: 100%;
height: auto;
}
.grid h4 {
margin-top: 1em;
font-size: 1em;
min-height: 3em;
}
.grid .more {
font-size: 0.9em;
overflow: hidden;
margin:0.3em;
}
body > svg { display: none; }
table {
border-collapse: collapse;
width: 100%;
}
td, th {
padding: 0.3em;
border: 1px solid #777;
text-align:left;
}
th {
font-weight: bold;
}
th, tr:nth-child(even) {
background-color: rgba(0, 0, 0, .1);
}
td img {
width: 16em;
height: auto;
}
.signatures {
display: flex;
justify-content:space-evenly;
margin-top: 2em;
padding-top: 2em;
border-top: 1px dashed #000;
align-items:first baseline;
}
.signatures > div {
width: 40%;
display: block;
text-align: center;
}
.signatures > div p {
padding-top: 0.3em;
margin-top: 4em;
border-top: 2px dotted #666;
}
input {
border:none;
border-bottom: 1px dotted #000;
height: 1em;
background-color: transparent;
}
.inactive {
opacity: 0.2;
filter:grayscale(100%)
}
dt {
font-weight: bold;
}
dd {
margin: 0.6em 0 1em 1em;
}
.e-summary {
font-size: 1.2em;
color: #333;
width: 80%;
margin: 0 auto;
}
fieldset {
padding: 0.3em;
margin: 1em 0;
border: none;
}
fieldset legend {
font-weight: bold;
margin-top: 2em;
}
fieldset label {
display: inline-block;
width: 30%;
margin-top: 1em;
}
fieldset input {
display: inline-block;
width: 60%;
}
input.date, input.month {
width: 4em;
}
input.year {
width: 8em;
}
textarea {
display: block;
width: 100%;
height: 12em;
}
label.wide {
display: block;
width: 100%;
}
.offer a {
display: inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: top;
max-width: 50%;
}
.h-feed {
display: flex;
align-items:baseline;
flex-grow: 1;
flex-wrap: wrap;
justify-content:flex-start;
}
.h-feed .h-event {
max-width: 50%;
padding: 0 1%;
}
.h-event strong, .h-event .p-summary, .h-event .offer {
display: none;
}
.disciplinelist > * {
clear: both;
}
.disciplinelist > div {
margin-bottom: 1em;
}
.disciplinelist > div img {
float:left;
width: 20%;
margin-right: 2%;
margin-bottom: 1em;
border: 1px solid #ccc;
}
.disciplinelist > div details {
width: 80%;
}
.disciplinelist > div details summary {
}
.disciplinelist > div details .description {
font-size: 1.1em;
color: #222;
}
.disciplinelist iframe {
aspect-ratio: 16 / 9;
width: 100%;
height: auto;
}
@media screen and (max-width: 54em) {
.grid > div {
max-width: 48%;
}
.e-summary {
width: 98%;
padding: 0 1% 0 1%;
}
.disciplinelist > div img {
width: 45%;
margin-right: 5%;
}
}