demo.css 518 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
* {
	box-sizing: border-box;
	outline: 0;
	text-decoration: none;
	word-wrap: break-word;
}
html {
	font-size: 100%;
	line-height: 1.5;
}
body {
  margin: 0;
  padding: 0;
	overflow-x: hidden;
}
section {
  color: #FFF;
  text-align: center;
  background-color: #358CA7;
  width: 100%;
  margin-bottom: 0.5rem;
}
.main {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: #f5f5f5;
}
.showcase {
  flex: 1 1 auto;
  justify-content: center;
  padding: 0.75rem;
}