Web rental system, developed for WEBT Module at HSLU
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.
 
 
 
 
WEBT_rentalsystem/css/style.css

59 lines
973 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;
align-items: center;
justify-content: center;
}
/* text description element */
#parent div:nth-child(1) {
flex-basis: 100%;
}
/* symbol elements */
#parent div {
flex-basis: 50%;
}
/* spacing */
.between-spacing {
margin-bottom: 1cm;
}
.bottom-spacing {
margin-bottom: 3cm;
}