/*
       .__                            __   
_______|__| ____   ____  ______ _____/  |_ 
\_  __ \  |/ ___\ / ___\/  ___// __ \   __\
 |  | \/  / /_/  > /_/  >___ \\  ___/|  |  
 |__|  |__\___  /\___  /____  >\___  >__|  
         /_____//_____/     \/     \/      

RIGGSET is a reset and basic CSS
for didactic purpose by Francesco Riggio
Palette from coolors.co - with simpler names
*
git clone https://github.com/FFLAB/riggset.git
*/
/* RESET */
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

ul,
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* BASIC STYLE */
body {
  font-family: Helvetica, Arial, sans-serif;
}

/** UTILITY CLASSES **/
/* Displays */
.none {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*** COLORS CLASSES ***/
.bg-red {
  background-color: #8d2723ff;
  color: #ffffff;
}

.bg-violet {
  background-color: #6b4e79ff;
  color: #ffffff;
}

.bg-gold {
  background-color: #b87f22ff;
  color: #ffffff;
}

.bg-blue {
  background-color: #5b9a96ff;
  color: #ffffff;
}

.bg-grey {
  background-color: #8b97a7ff;
  color: #ffffff;
}
/*# sourceMappingURL=riggset.css.map */