You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
999 B
61 lines
999 B
/* Form: Label */
|
|
label {
|
|
display: block;
|
|
font-weight: bold;
|
|
margin: 0 0 0 10px; /* direction: N O S W */
|
|
}
|
|
/* fieldset, surrounds form */
|
|
fieldset {
|
|
border: 1px solid #C95802;
|
|
background-color: white;
|
|
margin-top: 10px;
|
|
}
|
|
/* legend, title of a fieldset */
|
|
legend {
|
|
font-size: 110%;
|
|
font-weight: bold;
|
|
color: #FFFFFF; /* font color */
|
|
text-transform: uppercase;
|
|
background-color: #C95802;
|
|
padding: 5px 10px 5px 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* aside image */
|
|
.aside-image {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
/* navbar */
|
|
.navbar {
|
|
background-color: #E89212!important;
|
|
color: white;
|
|
font-size: 125%;
|
|
}
|
|
|
|
/* flexbox styling */
|
|
#parent {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: flex-start;
|
|
}
|
|
/* text description element */
|
|
#parent div:nth-child(1) {
|
|
flex-basis: 100%;
|
|
}
|
|
/* symbol elements */
|
|
#parent div {
|
|
flex-basis: 45%;
|
|
}
|
|
|
|
/* spacing */
|
|
.article-spacing {
|
|
margin-bottom: 0.5cm;
|
|
}
|
|
.between-spacing {
|
|
margin-bottom: 1cm;
|
|
}
|
|
.bottom-spacing {
|
|
margin-bottom: 3cm;
|
|
}
|
|
|