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.
 
 
 
 

26 lines
441 B

/* CSS styles for my flexbox demo page */
.flex-container {
background: lightsteelblue;
margin-bottom: 10px;
width: 100%;
display: flex;
}
.flex-item {
box-sizing: border-box;
border: 1px solid midnightblue;
padding: 10px;
flex: 1 1 100px;
}
.demoheader {
font-size: 36px;
background-color: darkblue;
color: antiquewhite;
}
.demofooter {
font-size: 24px;
background-color: black;
color: white;
}