81 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
body {
 | 
						|
  padding: 0;
 | 
						|
  margin: 0;
 | 
						|
  font-family: Roboto;
 | 
						|
}
 | 
						|
 | 
						|
@font-face {
 | 
						|
  font-family: Roboto;
 | 
						|
  src: url(/roboto-regular.ttf);
 | 
						|
}
 | 
						|
 | 
						|
.darkerbar {
 | 
						|
  background: lightgrey;
 | 
						|
  width: 100%;
 | 
						|
}
 | 
						|
 | 
						|
#content > p {
 | 
						|
  text-align: justify;
 | 
						|
}
 | 
						|
 | 
						|
#topbar {
 | 
						|
  display: inline-block;
 | 
						|
  height: 5em;
 | 
						|
  border-bottom: grey 1px solid;
 | 
						|
}
 | 
						|
 | 
						|
#content {
 | 
						|
  padding: 1em;
 | 
						|
}
 | 
						|
 | 
						|
a.item {
 | 
						|
  text-decoration: none;
 | 
						|
  display: inline-flex;
 | 
						|
  flex: 0 2 80em;
 | 
						|
}
 | 
						|
 | 
						|
div.item {
 | 
						|
  background: lightgrey;
 | 
						|
  display: flex;
 | 
						|
  flex: 0 2 80em;
 | 
						|
  margin: 0.1em;
 | 
						|
  padding: 0em 0.4em;
 | 
						|
  border: 1px grey solid; 
 | 
						|
  border-radius: 0.5em;
 | 
						|
  box-sizing: border-box;
 | 
						|
  vertical-align: middle;
 | 
						|
}
 | 
						|
 | 
						|
div.item:hover {
 | 
						|
  background: beige;
 | 
						|
}
 | 
						|
 | 
						|
h2.item {
 | 
						|
  text-decoration: none;
 | 
						|
  white-space: nowrap;
 | 
						|
  color: black;
 | 
						|
  min-width: 7em;
 | 
						|
  margin: 1em 0;
 | 
						|
}
 | 
						|
 | 
						|
.desc {
 | 
						|
  text-decoration: none;
 | 
						|
  font-size: 1em;
 | 
						|
  color: black;
 | 
						|
  margin: 0 3em;
 | 
						|
  text-align: center;
 | 
						|
  align-self: center;
 | 
						|
}
 | 
						|
 | 
						|
div.item-list {
 | 
						|
  display: flex;
 | 
						|
  justify-content: center;
 | 
						|
  flex-wrap: wrap;
 | 
						|
}
 | 
						|
 | 
						|
footer {
 | 
						|
  display: block;
 | 
						|
  bottom: 0;
 | 
						|
  height: 10em;
 | 
						|
  border-top: grey 1px solid;
 | 
						|
}
 |