🌛

venue-base.css

venue-base.css is injected by default in all venues that run on GEVME. This base CSS file defines the CSS classes required to properly display GEVME-specific blocks and widgets.

CSS Class Naming Convention

The default CSS classes follow the following naming convention:

  • All CSS classes begin with a gevme- prefix.
  • CSS selectors for content blocks follow this pattern: .gevme-${x}-block, where “x” is lower case string value of the block type.

For example the Meeting block uses .gevme-meeting-block where the default CSS definition is as follows:

.gevme-meeting-block {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	background-color: transparent;
	overflow: auto;
}