main 848a27aa7f61 cached
14 files
108.8 KB
31.3k tokens
45 symbols
1 requests
Download .txt
Repository: Universidade-Livre/universidade-livre.github.io
Branch: main
Commit: 848a27aa7f61
Files: 14
Total size: 108.8 KB

Directory structure:
gitextract_cs0gqsyu/

├── .gitignore
├── .vscode/
│   └── settings.json
├── docs/
│   ├── CNAME
│   ├── alert/
│   │   └── index.html
│   ├── assets/
│   │   └── scrollreveal.js
│   ├── css/
│   │   ├── custom.css
│   │   ├── input.css
│   │   └── output.css
│   ├── cursos.html
│   ├── imgs/
│   │   └── favicon/
│   │       ├── browserconfig.xml
│   │       └── site.webmanifest
│   └── index.html
├── package.json
└── tailwind.config.js

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

================================================
FILE: .vscode/settings.json
================================================
{
    "liveServer.settings.port": 5501
}

================================================
FILE: docs/CNAME
================================================
ulivre.dev

================================================
FILE: docs/alert/index.html
================================================
<!doctype html>
<html>

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Universidade Brasileira Livre</title>
  <style>
    /* Glassmorphism card effect */
    .card {
      backdrop-filter: blur(15px) saturate(94%);
      -webkit-backdrop-filter: blur(15px) saturate(94%);
      background-color: rgba(31, 41, 55, 0.86);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.125);
    }
  </style>
  <meta name="title" content="Universidade Brasileira Livre ">
  <meta name="description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">

  <script src="https://kit.fontawesome.com/0ce44bc7c0.js" crossorigin="anonymous"></script>

  <link rel="apple-touch-icon" sizes="180x180" href="../imgs/favicon/apple-touch-icon.png">
  <link rel="icon" type="image/png" sizes="32x32" href="../imgs/favicon/favicon-32x32.png">
  <link rel="icon" type="image/png" sizes="16x16" href="../imgs/favicon/favicon-16x16.png">
  <link rel="manifest" href="../imgs/favicon/site.webmanifest">
  <link rel="mask-icon" href="../imgs/favicon/safari-pinned-tab.svg" color="#5bbad5">
  <meta name="msapplication-TileColor" content="#da532c">
  <meta name="theme-color" content="#ffffff">

  <link href="../css/custom.css" rel="stylesheet">
  <link href="../css/output.css" rel="stylesheet">
</head>

<body class="bg-gray-800">

  <section class="flex items-center justify-center h-screen  ">
    <div class="container  flex flex-col items-center justify-center  leading-none tracking-wide    text-center ">



   <h1  class="text-3xl text-gray-300 mt-2 font-thin   max-w-sm"><span id="msgOutput"></span>
      </h1>

      <div class="grid grid-cols-1 sm:grid-cols-1 place-items-center  ">
        <a  onclick="history.back()" rel="noopener noreferrer" href="#"
          class="w-72 py-3 font-medium text-lg rounded mt-8 ubl-bg-gradient  text-white"><i
            class=" mr-2 fa-solid fa-arrow-left"></i> Voltar para o inicio </a>


      </div>
    </div>
  </section>
</body>


<script src="../assets/scrollreveal.js"></script>
<script>
  ScrollReveal({ reset: false });
  ScrollReveal().reveal('.reveal_flip', { rotate: { x: 20, z: 20 }, duration: 1000, delay: 300 });
  ScrollReveal().reveal('.reveal_bottom', { origin: 'bottom', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_top', { easing: 'ease-in-out', origin: 'top', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_left_delay', { origin: 'left', distance: '100px', delay: 700 });
  ScrollReveal().reveal('.reveal_left', { origin: 'left', distance: '100px', delay: 400, });
  ScrollReveal().reveal('.reveal_right', { origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.reveal_right_pic', { easing: "ease-in-out", origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.scale_up', { scale: 0.85, delay: 500 });
</script>
<script>

  const params = new URLSearchParams(window.location.search)
  const msgOutput = document.getElementById("msgOutput")
  const message = params.get("msg")
  function createAlert() {
    if (message == null || message == "") {
      window.location.replace("https://ulivre.dev")
    } else {
      msgOutput.innerHTML = message
    }
  }

  createAlert()

</script>

</html>

================================================
FILE: docs/assets/scrollreveal.js
================================================
/*! @license ScrollReveal v4.0.9

	Copyright 2021 Fisssion LLC.

	Licensed under the GNU General Public License 3.0 for
	compatible open source projects and non-commercial use.

	For commercial sites, themes, projects, and applications,
	keep your source code private/proprietary by purchasing
	a commercial license from https://scrollrevealjs.org/
*/
(function (global, factory) {
	typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
	typeof define === 'function' && define.amd ? define(factory) :
	(global = global || self, global.ScrollReveal = factory());
}(this, function () { 'use strict';

	var defaults = {
		delay: 0,
		distance: '0',
		duration: 600,
		easing: 'cubic-bezier(0.5, 0, 0, 1)',
		interval: 0,
		opacity: 0,
		origin: 'bottom',
		rotate: {
			x: 0,
			y: 0,
			z: 0
		},
		scale: 1,
		cleanup: false,
		container: document.documentElement,
		desktop: true,
		mobile: true,
		reset: false,
		useDelay: 'always',
		viewFactor: 0.0,
		viewOffset: {
			top: 0,
			right: 0,
			bottom: 0,
			left: 0
		},
		afterReset: function afterReset() {},
		afterReveal: function afterReveal() {},
		beforeReset: function beforeReset() {},
		beforeReveal: function beforeReveal() {}
	};

	function failure() {
		document.documentElement.classList.remove('sr');

		return {
			clean: function clean() {},
			destroy: function destroy() {},
			reveal: function reveal() {},
			sync: function sync() {},
			get noop() {
				return true
			}
		}
	}

	function success() {
		document.documentElement.classList.add('sr');

		if (document.body) {
			document.body.style.height = '100%';
		} else {
			document.addEventListener('DOMContentLoaded', function () {
				document.body.style.height = '100%';
			});
		}
	}

	var mount = { success: success, failure: failure };

	/*! @license is-dom-node v1.0.4

		Copyright 2018 Fisssion LLC.

		Permission is hereby granted, free of charge, to any person obtaining a copy
		of this software and associated documentation files (the "Software"), to deal
		in the Software without restriction, including without limitation the rights
		to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
		copies of the Software, and to permit persons to whom the Software is
		furnished to do so, subject to the following conditions:

		The above copyright notice and this permission notice shall be included in all
		copies or substantial portions of the Software.

		THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
		IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
		FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
		AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
		LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
		OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
		SOFTWARE.

	*/
	function isDomNode(x) {
		return typeof window.Node === 'object'
			? x instanceof window.Node
			: x !== null &&
					typeof x === 'object' &&
					typeof x.nodeType === 'number' &&
					typeof x.nodeName === 'string'
	}

	/*! @license is-dom-node-list v1.2.1

		Copyright 2018 Fisssion LLC.

		Permission is hereby granted, free of charge, to any person obtaining a copy
		of this software and associated documentation files (the "Software"), to deal
		in the Software without restriction, including without limitation the rights
		to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
		copies of the Software, and to permit persons to whom the Software is
		furnished to do so, subject to the following conditions:

		The above copyright notice and this permission notice shall be included in all
		copies or substantial portions of the Software.

		THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
		IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
		FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
		AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
		LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
		OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
		SOFTWARE.

	*/

	function isDomNodeList(x) {
		var prototypeToString = Object.prototype.toString.call(x);
		var regex = /^\[object (HTMLCollection|NodeList|Object)\]$/;

		return typeof window.NodeList === 'object'
			? x instanceof window.NodeList
			: x !== null &&
					typeof x === 'object' &&
					typeof x.length === 'number' &&
					regex.test(prototypeToString) &&
					(x.length === 0 || isDomNode(x[0]))
	}

	/*! @license Tealight v0.3.6

		Copyright 2018 Fisssion LLC.

		Permission is hereby granted, free of charge, to any person obtaining a copy
		of this software and associated documentation files (the "Software"), to deal
		in the Software without restriction, including without limitation the rights
		to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
		copies of the Software, and to permit persons to whom the Software is
		furnished to do so, subject to the following conditions:

		The above copyright notice and this permission notice shall be included in all
		copies or substantial portions of the Software.

		THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
		IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
		FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
		AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
		LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
		OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
		SOFTWARE.

	*/

	function tealight(target, context) {
	  if ( context === void 0 ) { context = document; }

	  if (target instanceof Array) { return target.filter(isDomNode); }
	  if (isDomNode(target)) { return [target]; }
	  if (isDomNodeList(target)) { return Array.prototype.slice.call(target); }
	  if (typeof target === "string") {
	    try {
	      var query = context.querySelectorAll(target);
	      return Array.prototype.slice.call(query);
	    } catch (err) {
	      return [];
	    }
	  }
	  return [];
	}

	function isObject(x) {
		return (
			x !== null &&
			x instanceof Object &&
			(x.constructor === Object ||
				Object.prototype.toString.call(x) === '[object Object]')
		)
	}

	function each(collection, callback) {
		if (isObject(collection)) {
			var keys = Object.keys(collection);
			return keys.forEach(function (key) { return callback(collection[key], key, collection); })
		}
		if (collection instanceof Array) {
			return collection.forEach(function (item, i) { return callback(item, i, collection); })
		}
		throw new TypeError('Expected either an array or object literal.')
	}

	function logger(message) {
		var details = [], len = arguments.length - 1;
		while ( len-- > 0 ) details[ len ] = arguments[ len + 1 ];

		if (this.constructor.debug && console) {
			var report = "%cScrollReveal: " + message;
			details.forEach(function (detail) { return (report += "\n — " + detail); });
			console.log(report, 'color: #ea654b;'); // eslint-disable-line no-console
		}
	}

	function rinse() {
		var this$1 = this;

		var struct = function () { return ({
			active: [],
			stale: []
		}); };

		var elementIds = struct();
		var sequenceIds = struct();
		var containerIds = struct();

		/**
		 * Take stock of active element IDs.
		 */
		try {
			each(tealight('[data-sr-id]'), function (node) {
				var id = parseInt(node.getAttribute('data-sr-id'));
				elementIds.active.push(id);
			});
		} catch (e) {
			throw e
		}
		/**
		 * Destroy stale elements.
		 */
		each(this.store.elements, function (element) {
			if (elementIds.active.indexOf(element.id) === -1) {
				elementIds.stale.push(element.id);
			}
		});

		each(elementIds.stale, function (staleId) { return delete this$1.store.elements[staleId]; });

		/**
		 * Take stock of active container and sequence IDs.
		 */
		each(this.store.elements, function (element) {
			if (containerIds.active.indexOf(element.containerId) === -1) {
				containerIds.active.push(element.containerId);
			}
			if (element.hasOwnProperty('sequence')) {
				if (sequenceIds.active.indexOf(element.sequence.id) === -1) {
					sequenceIds.active.push(element.sequence.id);
				}
			}
		});

		/**
		 * Destroy stale containers.
		 */
		each(this.store.containers, function (container) {
			if (containerIds.active.indexOf(container.id) === -1) {
				containerIds.stale.push(container.id);
			}
		});

		each(containerIds.stale, function (staleId) {
			var stale = this$1.store.containers[staleId].node;
			stale.removeEventListener('scroll', this$1.delegate);
			stale.removeEventListener('resize', this$1.delegate);
			delete this$1.store.containers[staleId];
		});

		/**
		 * Destroy stale sequences.
		 */
		each(this.store.sequences, function (sequence) {
			if (sequenceIds.active.indexOf(sequence.id) === -1) {
				sequenceIds.stale.push(sequence.id);
			}
		});

		each(sequenceIds.stale, function (staleId) { return delete this$1.store.sequences[staleId]; });
	}

	/*! @license Rematrix v0.3.0

		Copyright 2018 Julian Lloyd.

		Permission is hereby granted, free of charge, to any person obtaining a copy
		of this software and associated documentation files (the "Software"), to deal
		in the Software without restriction, including without limitation the rights
		to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
		copies of the Software, and to permit persons to whom the Software is
		furnished to do so, subject to the following conditions:

		The above copyright notice and this permission notice shall be included in
		all copies or substantial portions of the Software.

		THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
		IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
		FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
		AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
		LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
		OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
		THE SOFTWARE.
	*/
	/**
	 * @module Rematrix
	 */

	/**
	 * Transformation matrices in the browser come in two flavors:
	 *
	 *  - `matrix` using 6 values (short)
	 *  - `matrix3d` using 16 values (long)
	 *
	 * This utility follows this [conversion guide](https://goo.gl/EJlUQ1)
	 * to expand short form matrices to their equivalent long form.
	 *
	 * @param  {array} source - Accepts both short and long form matrices.
	 * @return {array}
	 */
	function format(source) {
		if (source.constructor !== Array) {
			throw new TypeError('Expected array.')
		}
		if (source.length === 16) {
			return source
		}
		if (source.length === 6) {
			var matrix = identity();
			matrix[0] = source[0];
			matrix[1] = source[1];
			matrix[4] = source[2];
			matrix[5] = source[3];
			matrix[12] = source[4];
			matrix[13] = source[5];
			return matrix
		}
		throw new RangeError('Expected array with either 6 or 16 values.')
	}

	/**
	 * Returns a matrix representing no transformation. The product of any matrix
	 * multiplied by the identity matrix will be the original matrix.
	 *
	 * > **Tip:** Similar to how `5 * 1 === 5`, where `1` is the identity.
	 *
	 * @return {array}
	 */
	function identity() {
		var matrix = [];
		for (var i = 0; i < 16; i++) {
			i % 5 == 0 ? matrix.push(1) : matrix.push(0);
		}
		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing the combined transformations
	 * of both arguments.
	 *
	 * > **Note:** Order is very important. For example, rotating 45°
	 * along the Z-axis, followed by translating 500 pixels along the
	 * Y-axis... is not the same as translating 500 pixels along the
	 * Y-axis, followed by rotating 45° along on the Z-axis.
	 *
	 * @param  {array} m - Accepts both short and long form matrices.
	 * @param  {array} x - Accepts both short and long form matrices.
	 * @return {array}
	 */
	function multiply(m, x) {
		var fm = format(m);
		var fx = format(x);
		var product = [];

		for (var i = 0; i < 4; i++) {
			var row = [fm[i], fm[i + 4], fm[i + 8], fm[i + 12]];
			for (var j = 0; j < 4; j++) {
				var k = j * 4;
				var col = [fx[k], fx[k + 1], fx[k + 2], fx[k + 3]];
				var result =
					row[0] * col[0] + row[1] * col[1] + row[2] * col[2] + row[3] * col[3];

				product[i + k] = result;
			}
		}

		return product
	}

	/**
	 * Attempts to return a 4x4 matrix describing the CSS transform
	 * matrix passed in, but will return the identity matrix as a
	 * fallback.
	 *
	 * > **Tip:** This method is used to convert a CSS matrix (retrieved as a
	 * `string` from computed styles) to its equivalent array format.
	 *
	 * @param  {string} source - `matrix` or `matrix3d` CSS Transform value.
	 * @return {array}
	 */
	function parse(source) {
		if (typeof source === 'string') {
			var match = source.match(/matrix(3d)?\(([^)]+)\)/);
			if (match) {
				var raw = match[2].split(', ').map(parseFloat);
				return format(raw)
			}
		}
		return identity()
	}

	/**
	 * Returns a 4x4 matrix describing X-axis rotation.
	 *
	 * @param  {number} angle - Measured in degrees.
	 * @return {array}
	 */
	function rotateX(angle) {
		var theta = Math.PI / 180 * angle;
		var matrix = identity();

		matrix[5] = matrix[10] = Math.cos(theta);
		matrix[6] = matrix[9] = Math.sin(theta);
		matrix[9] *= -1;

		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing Y-axis rotation.
	 *
	 * @param  {number} angle - Measured in degrees.
	 * @return {array}
	 */
	function rotateY(angle) {
		var theta = Math.PI / 180 * angle;
		var matrix = identity();

		matrix[0] = matrix[10] = Math.cos(theta);
		matrix[2] = matrix[8] = Math.sin(theta);
		matrix[2] *= -1;

		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing Z-axis rotation.
	 *
	 * @param  {number} angle - Measured in degrees.
	 * @return {array}
	 */
	function rotateZ(angle) {
		var theta = Math.PI / 180 * angle;
		var matrix = identity();

		matrix[0] = matrix[5] = Math.cos(theta);
		matrix[1] = matrix[4] = Math.sin(theta);
		matrix[4] *= -1;

		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing 2D scaling. The first argument
	 * is used for both X and Y-axis scaling, unless an optional
	 * second argument is provided to explicitly define Y-axis scaling.
	 *
	 * @param  {number} scalar    - Decimal multiplier.
	 * @param  {number} [scalarY] - Decimal multiplier.
	 * @return {array}
	 */
	function scale(scalar, scalarY) {
		var matrix = identity();

		matrix[0] = scalar;
		matrix[5] = typeof scalarY === 'number' ? scalarY : scalar;

		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing X-axis translation.
	 *
	 * @param  {number} distance - Measured in pixels.
	 * @return {array}
	 */
	function translateX(distance) {
		var matrix = identity();
		matrix[12] = distance;
		return matrix
	}

	/**
	 * Returns a 4x4 matrix describing Y-axis translation.
	 *
	 * @param  {number} distance - Measured in pixels.
	 * @return {array}
	 */
	function translateY(distance) {
		var matrix = identity();
		matrix[13] = distance;
		return matrix
	}

	var getPrefixedCssProp = (function () {
		var properties = {};
		var style = document.documentElement.style;

		function getPrefixedCssProperty(name, source) {
			if ( source === void 0 ) source = style;

			if (name && typeof name === 'string') {
				if (properties[name]) {
					return properties[name]
				}
				if (typeof source[name] === 'string') {
					return (properties[name] = name)
				}
				if (typeof source[("-webkit-" + name)] === 'string') {
					return (properties[name] = "-webkit-" + name)
				}
				throw new RangeError(("Unable to find \"" + name + "\" style property."))
			}
			throw new TypeError('Expected a string.')
		}

		getPrefixedCssProperty.clearCache = function () { return (properties = {}); };

		return getPrefixedCssProperty
	})();

	function style(element) {
		var computed = window.getComputedStyle(element.node);
		var position = computed.position;
		var config = element.config;

		/**
		 * Generate inline styles
		 */
		var inline = {};
		var inlineStyle = element.node.getAttribute('style') || '';
		var inlineMatch = inlineStyle.match(/[\w-]+\s*:\s*[^;]+\s*/gi) || [];

		inline.computed = inlineMatch ? inlineMatch.map(function (m) { return m.trim(); }).join('; ') + ';' : '';

		inline.generated = inlineMatch.some(function (m) { return m.match(/visibility\s?:\s?visible/i); })
			? inline.computed
			: inlineMatch.concat( ['visibility: visible']).map(function (m) { return m.trim(); }).join('; ') + ';';

		/**
		 * Generate opacity styles
		 */
		var computedOpacity = parseFloat(computed.opacity);
		var configOpacity = !isNaN(parseFloat(config.opacity))
			? parseFloat(config.opacity)
			: parseFloat(computed.opacity);

		var opacity = {
			computed: computedOpacity !== configOpacity ? ("opacity: " + computedOpacity + ";") : '',
			generated: computedOpacity !== configOpacity ? ("opacity: " + configOpacity + ";") : ''
		};

		/**
		 * Generate transformation styles
		 */
		var transformations = [];

		if (parseFloat(config.distance)) {
			var axis = config.origin === 'top' || config.origin === 'bottom' ? 'Y' : 'X';

			/**
			 * Let’s make sure our our pixel distances are negative for top and left.
			 * e.g. { origin: 'top', distance: '25px' } starts at `top: -25px` in CSS.
			 */
			var distance = config.distance;
			if (config.origin === 'top' || config.origin === 'left') {
				distance = /^-/.test(distance) ? distance.substr(1) : ("-" + distance);
			}

			var ref = distance.match(/(^-?\d+\.?\d?)|(em$|px$|%$)/g);
			var value = ref[0];
			var unit = ref[1];

			switch (unit) {
				case 'em':
					distance = parseInt(computed.fontSize) * value;
					break
				case 'px':
					distance = value;
					break
				case '%':
					/**
					 * Here we use `getBoundingClientRect` instead of
					 * the existing data attached to `element.geometry`
					 * because only the former includes any transformations
					 * current applied to the element.
					 *
					 * If that behavior ends up being unintuitive, this
					 * logic could instead utilize `element.geometry.height`
					 * and `element.geoemetry.width` for the distance calculation
					 */
					distance =
						axis === 'Y'
							? (element.node.getBoundingClientRect().height * value) / 100
							: (element.node.getBoundingClientRect().width * value) / 100;
					break
				default:
					throw new RangeError('Unrecognized or missing distance unit.')
			}

			if (axis === 'Y') {
				transformations.push(translateY(distance));
			} else {
				transformations.push(translateX(distance));
			}
		}

		if (config.rotate.x) { transformations.push(rotateX(config.rotate.x)); }
		if (config.rotate.y) { transformations.push(rotateY(config.rotate.y)); }
		if (config.rotate.z) { transformations.push(rotateZ(config.rotate.z)); }
		if (config.scale !== 1) {
			if (config.scale === 0) {
				/**
				 * The CSS Transforms matrix interpolation specification
				 * basically disallows transitions of non-invertible
				 * matrixes, which means browsers won't transition
				 * elements with zero scale.
				 *
				 * That’s inconvenient for the API and developer
				 * experience, so we simply nudge their value
				 * slightly above zero; this allows browsers
				 * to transition our element as expected.
				 *
				 * `0.0002` was the smallest number
				 * that performed across browsers.
				 */
				transformations.push(scale(0.0002));
			} else {
				transformations.push(scale(config.scale));
			}
		}

		var transform = {};
		if (transformations.length) {
			transform.property = getPrefixedCssProp('transform');
			/**
			 * The default computed transform value should be one of:
			 * undefined || 'none' || 'matrix()' || 'matrix3d()'
			 */
			transform.computed = {
				raw: computed[transform.property],
				matrix: parse(computed[transform.property])
			};

			transformations.unshift(transform.computed.matrix);
			var product = transformations.reduce(multiply);

			transform.generated = {
				initial: ((transform.property) + ": matrix3d(" + (product.join(', ')) + ");"),
				final: ((transform.property) + ": matrix3d(" + (transform.computed.matrix.join(', ')) + ");")
			};
		} else {
			transform.generated = {
				initial: '',
				final: ''
			};
		}

		/**
		 * Generate transition styles
		 */
		var transition = {};
		if (opacity.generated || transform.generated.initial) {
			transition.property = getPrefixedCssProp('transition');
			transition.computed = computed[transition.property];
			transition.fragments = [];

			var delay = config.delay;
			var duration = config.duration;
			var easing = config.easing;

			if (opacity.generated) {
				transition.fragments.push({
					delayed: ("opacity " + (duration / 1000) + "s " + easing + " " + (delay / 1000) + "s"),
					instant: ("opacity " + (duration / 1000) + "s " + easing + " 0s")
				});
			}

			if (transform.generated.initial) {
				transition.fragments.push({
					delayed: ((transform.property) + " " + (duration / 1000) + "s " + easing + " " + (delay / 1000) + "s"),
					instant: ((transform.property) + " " + (duration / 1000) + "s " + easing + " 0s")
				});
			}

			/**
			 * The default computed transition property should be undefined, or one of:
			 * '' || 'none 0s ease 0s' || 'all 0s ease 0s' || 'all 0s 0s cubic-bezier()'
			 */
			var hasCustomTransition =
				transition.computed && !transition.computed.match(/all 0s|none 0s/);

			if (hasCustomTransition) {
				transition.fragments.unshift({
					delayed: transition.computed,
					instant: transition.computed
				});
			}

			var composed = transition.fragments.reduce(
				function (composition, fragment, i) {
					composition.delayed += i === 0 ? fragment.delayed : (", " + (fragment.delayed));
					composition.instant += i === 0 ? fragment.instant : (", " + (fragment.instant));
					return composition
				},
				{
					delayed: '',
					instant: ''
				}
			);

			transition.generated = {
				delayed: ((transition.property) + ": " + (composed.delayed) + ";"),
				instant: ((transition.property) + ": " + (composed.instant) + ";")
			};
		} else {
			transition.generated = {
				delayed: '',
				instant: ''
			};
		}

		return {
			inline: inline,
			opacity: opacity,
			position: position,
			transform: transform,
			transition: transition
		}
	}

	/**
	 * apply a CSS string to an element using the CSSOM (element.style) rather
	 * than setAttribute, which may violate the content security policy.
	 *
	 * @param {Node}   [el]  Element to receive styles.
	 * @param {string} [declaration] Styles to apply.
	 */
	function applyStyle (el, declaration) {
		declaration.split(';').forEach(function (pair) {
			var ref = pair.split(':');
			var property = ref[0];
			var value = ref.slice(1);
			if (property && value) {
				el.style[property.trim()] = value.join(':');
			}
		});
	}

	function clean(target) {
		var this$1 = this;

		var dirty;
		try {
			each(tealight(target), function (node) {
				var id = node.getAttribute('data-sr-id');
				if (id !== null) {
					dirty = true;
					var element = this$1.store.elements[id];
					if (element.callbackTimer) {
						window.clearTimeout(element.callbackTimer.clock);
					}
					applyStyle(element.node, element.styles.inline.generated);
					node.removeAttribute('data-sr-id');
					delete this$1.store.elements[id];
				}
			});
		} catch (e) {
			return logger.call(this, 'Clean failed.', e.message)
		}

		if (dirty) {
			try {
				rinse.call(this);
			} catch (e) {
				return logger.call(this, 'Clean failed.', e.message)
			}
		}
	}

	function destroy() {
		var this$1 = this;

		/**
		 * Remove all generated styles and element ids
		 */
		each(this.store.elements, function (element) {
			applyStyle(element.node, element.styles.inline.generated);
			element.node.removeAttribute('data-sr-id');
		});

		/**
		 * Remove all event listeners.
		 */
		each(this.store.containers, function (container) {
			var target =
				container.node === document.documentElement ? window : container.node;
			target.removeEventListener('scroll', this$1.delegate);
			target.removeEventListener('resize', this$1.delegate);
		});

		/**
		 * Clear all data from the store
		 */
		this.store = {
			containers: {},
			elements: {},
			history: [],
			sequences: {}
		};
	}

	function deepAssign(target) {
		var sources = [], len = arguments.length - 1;
		while ( len-- > 0 ) sources[ len ] = arguments[ len + 1 ];

		if (isObject(target)) {
			each(sources, function (source) {
				each(source, function (data, key) {
					if (isObject(data)) {
						if (!target[key] || !isObject(target[key])) {
							target[key] = {};
						}
						deepAssign(target[key], data);
					} else {
						target[key] = data;
					}
				});
			});
			return target
		} else {
			throw new TypeError('Target must be an object literal.')
		}
	}

	function isMobile(agent) {
		if ( agent === void 0 ) agent = navigator.userAgent;

		return /Android|iPhone|iPad|iPod/i.test(agent)
	}

	var nextUniqueId = (function () {
		var uid = 0;
		return function () { return uid++; }
	})();

	function initialize() {
		var this$1 = this;

		rinse.call(this);

		each(this.store.elements, function (element) {
			var styles = [element.styles.inline.generated];

			if (element.visible) {
				styles.push(element.styles.opacity.computed);
				styles.push(element.styles.transform.generated.final);
				element.revealed = true;
			} else {
				styles.push(element.styles.opacity.generated);
				styles.push(element.styles.transform.generated.initial);
				element.revealed = false;
			}

			applyStyle(element.node, styles.filter(function (s) { return s !== ''; }).join(' '));
		});

		each(this.store.containers, function (container) {
			var target =
				container.node === document.documentElement ? window : container.node;
			target.addEventListener('scroll', this$1.delegate);
			target.addEventListener('resize', this$1.delegate);
		});

		/**
		 * Manually invoke delegate once to capture
		 * element and container dimensions, container
		 * scroll position, and trigger any valid reveals
		 */
		this.delegate();

		/**
		 * Wipe any existing `setTimeout` now
		 * that initialization has completed.
		 */
		this.initTimeout = null;
	}

	function animate(element, force) {
		if ( force === void 0 ) force = {};

		var pristine = force.pristine || this.pristine;
		var delayed =
			element.config.useDelay === 'always' ||
			(element.config.useDelay === 'onload' && pristine) ||
			(element.config.useDelay === 'once' && !element.seen);

		var shouldReveal = element.visible && !element.revealed;
		var shouldReset = !element.visible && element.revealed && element.config.reset;

		if (force.reveal || shouldReveal) {
			return triggerReveal.call(this, element, delayed)
		}

		if (force.reset || shouldReset) {
			return triggerReset.call(this, element)
		}
	}

	function triggerReveal(element, delayed) {
		var styles = [
			element.styles.inline.generated,
			element.styles.opacity.computed,
			element.styles.transform.generated.final
		];
		if (delayed) {
			styles.push(element.styles.transition.generated.delayed);
		} else {
			styles.push(element.styles.transition.generated.instant);
		}
		element.revealed = element.seen = true;
		applyStyle(element.node, styles.filter(function (s) { return s !== ''; }).join(' '));
		registerCallbacks.call(this, element, delayed);
	}

	function triggerReset(element) {
		var styles = [
			element.styles.inline.generated,
			element.styles.opacity.generated,
			element.styles.transform.generated.initial,
			element.styles.transition.generated.instant
		];
		element.revealed = false;
		applyStyle(element.node, styles.filter(function (s) { return s !== ''; }).join(' '));
		registerCallbacks.call(this, element);
	}

	function registerCallbacks(element, isDelayed) {
		var this$1 = this;

		var duration = isDelayed
			? element.config.duration + element.config.delay
			: element.config.duration;

		var beforeCallback = element.revealed
			? element.config.beforeReveal
			: element.config.beforeReset;

		var afterCallback = element.revealed
			? element.config.afterReveal
			: element.config.afterReset;

		var elapsed = 0;
		if (element.callbackTimer) {
			elapsed = Date.now() - element.callbackTimer.start;
			window.clearTimeout(element.callbackTimer.clock);
		}

		beforeCallback(element.node);

		element.callbackTimer = {
			start: Date.now(),
			clock: window.setTimeout(function () {
				afterCallback(element.node);
				element.callbackTimer = null;
				if (element.revealed && !element.config.reset && element.config.cleanup) {
					clean.call(this$1, element.node);
				}
			}, duration - elapsed)
		};
	}

	function sequence(element, pristine) {
		if ( pristine === void 0 ) pristine = this.pristine;

		/**
		 * We first check if the element should reset.
		 */
		if (!element.visible && element.revealed && element.config.reset) {
			return animate.call(this, element, { reset: true })
		}

		var seq = this.store.sequences[element.sequence.id];
		var i = element.sequence.index;

		if (seq) {
			var visible = new SequenceModel(seq, 'visible', this.store);
			var revealed = new SequenceModel(seq, 'revealed', this.store);

			seq.models = { visible: visible, revealed: revealed };

			/**
			 * If the sequence has no revealed members,
			 * then we reveal the first visible element
			 * within that sequence.
			 *
			 * The sequence then cues a recursive call
			 * in both directions.
			 */
			if (!revealed.body.length) {
				var nextId = seq.members[visible.body[0]];
				var nextElement = this.store.elements[nextId];

				if (nextElement) {
					cue.call(this, seq, visible.body[0], -1, pristine);
					cue.call(this, seq, visible.body[0], +1, pristine);
					return animate.call(this, nextElement, { reveal: true, pristine: pristine })
				}
			}

			/**
			 * If our element isn’t resetting, we check the
			 * element sequence index against the head, and
			 * then the foot of the sequence.
			 */
			if (
				!seq.blocked.head &&
				i === [].concat( revealed.head ).pop() &&
				i >= [].concat( visible.body ).shift()
			) {
				cue.call(this, seq, i, -1, pristine);
				return animate.call(this, element, { reveal: true, pristine: pristine })
			}

			if (
				!seq.blocked.foot &&
				i === [].concat( revealed.foot ).shift() &&
				i <= [].concat( visible.body ).pop()
			) {
				cue.call(this, seq, i, +1, pristine);
				return animate.call(this, element, { reveal: true, pristine: pristine })
			}
		}
	}

	function Sequence(interval) {
		var i = Math.abs(interval);
		if (!isNaN(i)) {
			this.id = nextUniqueId();
			this.interval = Math.max(i, 16);
			this.members = [];
			this.models = {};
			this.blocked = {
				head: false,
				foot: false
			};
		} else {
			throw new RangeError('Invalid sequence interval.')
		}
	}

	function SequenceModel(seq, prop, store) {
		var this$1 = this;

		this.head = [];
		this.body = [];
		this.foot = [];

		each(seq.members, function (id, index) {
			var element = store.elements[id];
			if (element && element[prop]) {
				this$1.body.push(index);
			}
		});

		if (this.body.length) {
			each(seq.members, function (id, index) {
				var element = store.elements[id];
				if (element && !element[prop]) {
					if (index < this$1.body[0]) {
						this$1.head.push(index);
					} else {
						this$1.foot.push(index);
					}
				}
			});
		}
	}

	function cue(seq, i, direction, pristine) {
		var this$1 = this;

		var blocked = ['head', null, 'foot'][1 + direction];
		var nextId = seq.members[i + direction];
		var nextElement = this.store.elements[nextId];

		seq.blocked[blocked] = true;

		setTimeout(function () {
			seq.blocked[blocked] = false;
			if (nextElement) {
				sequence.call(this$1, nextElement, pristine);
			}
		}, seq.interval);
	}

	function reveal(target, options, syncing) {
		var this$1 = this;
		if ( options === void 0 ) options = {};
		if ( syncing === void 0 ) syncing = false;

		var containerBuffer = [];
		var sequence$$1;
		var interval = options.interval || defaults.interval;

		try {
			if (interval) {
				sequence$$1 = new Sequence(interval);
			}

			var nodes = tealight(target);
			if (!nodes.length) {
				throw new Error('Invalid reveal target.')
			}

			var elements = nodes.reduce(function (elementBuffer, elementNode) {
				var element = {};
				var existingId = elementNode.getAttribute('data-sr-id');

				if (existingId) {
					deepAssign(element, this$1.store.elements[existingId]);

					/**
					 * In order to prevent previously generated styles
					 * from throwing off the new styles, the style tag
					 * has to be reverted to its pre-reveal state.
					 */
					applyStyle(element.node, element.styles.inline.computed);
				} else {
					element.id = nextUniqueId();
					element.node = elementNode;
					element.seen = false;
					element.revealed = false;
					element.visible = false;
				}

				var config = deepAssign({}, element.config || this$1.defaults, options);

				if ((!config.mobile && isMobile()) || (!config.desktop && !isMobile())) {
					if (existingId) {
						clean.call(this$1, element);
					}
					return elementBuffer // skip elements that are disabled
				}

				var containerNode = tealight(config.container)[0];
				if (!containerNode) {
					throw new Error('Invalid container.')
				}
				if (!containerNode.contains(elementNode)) {
					return elementBuffer // skip elements found outside the container
				}

				var containerId;
				{
					containerId = getContainerId(
						containerNode,
						containerBuffer,
						this$1.store.containers
					);
					if (containerId === null) {
						containerId = nextUniqueId();
						containerBuffer.push({ id: containerId, node: containerNode });
					}
				}

				element.config = config;
				element.containerId = containerId;
				element.styles = style(element);

				if (sequence$$1) {
					element.sequence = {
						id: sequence$$1.id,
						index: sequence$$1.members.length
					};
					sequence$$1.members.push(element.id);
				}

				elementBuffer.push(element);
				return elementBuffer
			}, []);

			/**
			 * Modifying the DOM via setAttribute needs to be handled
			 * separately from reading computed styles in the map above
			 * for the browser to batch DOM changes (limiting reflows)
			 */
			each(elements, function (element) {
				this$1.store.elements[element.id] = element;
				element.node.setAttribute('data-sr-id', element.id);
			});
		} catch (e) {
			return logger.call(this, 'Reveal failed.', e.message)
		}

		/**
		 * Now that element set-up is complete...
		 * Let’s commit any container and sequence data we have to the store.
		 */
		each(containerBuffer, function (container) {
			this$1.store.containers[container.id] = {
				id: container.id,
				node: container.node
			};
		});
		if (sequence$$1) {
			this.store.sequences[sequence$$1.id] = sequence$$1;
		}

		/**
		 * If reveal wasn't invoked by sync, we want to
		 * make sure to add this call to the history.
		 */
		if (syncing !== true) {
			this.store.history.push({ target: target, options: options });

			/**
			 * Push initialization to the event queue, giving
			 * multiple reveal calls time to be interpreted.
			 */
			if (this.initTimeout) {
				window.clearTimeout(this.initTimeout);
			}
			this.initTimeout = window.setTimeout(initialize.bind(this), 0);
		}
	}

	function getContainerId(node) {
		var collections = [], len = arguments.length - 1;
		while ( len-- > 0 ) collections[ len ] = arguments[ len + 1 ];

		var id = null;
		each(collections, function (collection) {
			each(collection, function (container) {
				if (id === null && container.node === node) {
					id = container.id;
				}
			});
		});
		return id
	}

	/**
	 * Re-runs the reveal method for each record stored in history,
	 * for capturing new content asynchronously loaded into the DOM.
	 */
	function sync() {
		var this$1 = this;

		each(this.store.history, function (record) {
			reveal.call(this$1, record.target, record.options, true);
		});

		initialize.call(this);
	}

	var polyfill = function (x) { return (x > 0) - (x < 0) || +x; };
	var mathSign = Math.sign || polyfill;

	/*! @license miniraf v1.0.1

		Copyright 2018 Fisssion LLC.

		Permission is hereby granted, free of charge, to any person obtaining a copy
		of this software and associated documentation files (the "Software"), to deal
		in the Software without restriction, including without limitation the rights
		to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
		copies of the Software, and to permit persons to whom the Software is
		furnished to do so, subject to the following conditions:

		The above copyright notice and this permission notice shall be included in all
		copies or substantial portions of the Software.

		THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
		IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
		FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
		AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
		LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
		OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
		SOFTWARE.

	*/
	var polyfill$1 = (function () {
		var clock = Date.now();

		return function (callback) {
			var currentTime = Date.now();
			if (currentTime - clock > 16) {
				clock = currentTime;
				callback(currentTime);
			} else {
				setTimeout(function () { return polyfill$1(callback); }, 0);
			}
		}
	})();

	var miniraf = window.requestAnimationFrame ||
		window.webkitRequestAnimationFrame ||
		window.mozRequestAnimationFrame ||
		polyfill$1;

	function getGeometry(target, isContainer) {
		/**
		 * We want to ignore padding and scrollbars for container elements.
		 * More information here: https://goo.gl/vOZpbz
		 */
		var height = isContainer ? target.node.clientHeight : target.node.offsetHeight;
		var width = isContainer ? target.node.clientWidth : target.node.offsetWidth;

		var offsetTop = 0;
		var offsetLeft = 0;
		var node = target.node;

		do {
			if (!isNaN(node.offsetTop)) {
				offsetTop += node.offsetTop;
			}
			if (!isNaN(node.offsetLeft)) {
				offsetLeft += node.offsetLeft;
			}
			node = node.offsetParent;
		} while (node)

		return {
			bounds: {
				top: offsetTop,
				right: offsetLeft + width,
				bottom: offsetTop + height,
				left: offsetLeft
			},
			height: height,
			width: width
		}
	}

	function getScrolled(container) {
		var top, left;
		if (container.node === document.documentElement) {
			top = window.pageYOffset;
			left = window.pageXOffset;
		} else {
			top = container.node.scrollTop;
			left = container.node.scrollLeft;
		}
		return { top: top, left: left }
	}

	function isElementVisible(element) {
		if ( element === void 0 ) element = {};

		var container = this.store.containers[element.containerId];
		if (!container) { return }

		var viewFactor = Math.max(0, Math.min(1, element.config.viewFactor));
		var viewOffset = element.config.viewOffset;

		var elementBounds = {
			top: element.geometry.bounds.top + element.geometry.height * viewFactor,
			right: element.geometry.bounds.right - element.geometry.width * viewFactor,
			bottom: element.geometry.bounds.bottom - element.geometry.height * viewFactor,
			left: element.geometry.bounds.left + element.geometry.width * viewFactor
		};

		var containerBounds = {
			top: container.geometry.bounds.top + container.scroll.top + viewOffset.top,
			right: container.geometry.bounds.right + container.scroll.left - viewOffset.right,
			bottom:
				container.geometry.bounds.bottom + container.scroll.top - viewOffset.bottom,
			left: container.geometry.bounds.left + container.scroll.left + viewOffset.left
		};

		return (
			(elementBounds.top < containerBounds.bottom &&
				elementBounds.right > containerBounds.left &&
				elementBounds.bottom > containerBounds.top &&
				elementBounds.left < containerBounds.right) ||
			element.styles.position === 'fixed'
		)
	}

	function delegate(
		event,
		elements
	) {
		var this$1 = this;
		if ( event === void 0 ) event = { type: 'init' };
		if ( elements === void 0 ) elements = this.store.elements;

		miniraf(function () {
			var stale = event.type === 'init' || event.type === 'resize';

			each(this$1.store.containers, function (container) {
				if (stale) {
					container.geometry = getGeometry.call(this$1, container, true);
				}
				var scroll = getScrolled.call(this$1, container);
				if (container.scroll) {
					container.direction = {
						x: mathSign(scroll.left - container.scroll.left),
						y: mathSign(scroll.top - container.scroll.top)
					};
				}
				container.scroll = scroll;
			});

			/**
			 * Due to how the sequencer is implemented, it’s
			 * important that we update the state of all
			 * elements, before any animation logic is
			 * evaluated (in the second loop below).
			 */
			each(elements, function (element) {
				if (stale || element.geometry === undefined) {
					element.geometry = getGeometry.call(this$1, element);
				}
				element.visible = isElementVisible.call(this$1, element);
			});

			each(elements, function (element) {
				if (element.sequence) {
					sequence.call(this$1, element);
				} else {
					animate.call(this$1, element);
				}
			});

			this$1.pristine = false;
		});
	}

	function isTransformSupported() {
		var style = document.documentElement.style;
		return 'transform' in style || 'WebkitTransform' in style
	}

	function isTransitionSupported() {
		var style = document.documentElement.style;
		return 'transition' in style || 'WebkitTransition' in style
	}

	var version = "4.0.9";

	var boundDelegate;
	var boundDestroy;
	var boundReveal;
	var boundClean;
	var boundSync;
	var config;
	var debug;
	var instance;

	function ScrollReveal(options) {
		if ( options === void 0 ) options = {};

		var invokedWithoutNew =
			typeof this === 'undefined' ||
			Object.getPrototypeOf(this) !== ScrollReveal.prototype;

		if (invokedWithoutNew) {
			return new ScrollReveal(options)
		}

		if (!ScrollReveal.isSupported()) {
			logger.call(this, 'Instantiation failed.', 'This browser is not supported.');
			return mount.failure()
		}

		var buffer;
		try {
			buffer = config
				? deepAssign({}, config, options)
				: deepAssign({}, defaults, options);
		} catch (e) {
			logger.call(this, 'Invalid configuration.', e.message);
			return mount.failure()
		}

		try {
			var container = tealight(buffer.container)[0];
			if (!container) {
				throw new Error('Invalid container.')
			}
		} catch (e) {
			logger.call(this, e.message);
			return mount.failure()
		}

		config = buffer;

		if ((!config.mobile && isMobile()) || (!config.desktop && !isMobile())) {
			logger.call(
				this,
				'This device is disabled.',
				("desktop: " + (config.desktop)),
				("mobile: " + (config.mobile))
			);
			return mount.failure()
		}

		mount.success();

		this.store = {
			containers: {},
			elements: {},
			history: [],
			sequences: {}
		};

		this.pristine = true;

		boundDelegate = boundDelegate || delegate.bind(this);
		boundDestroy = boundDestroy || destroy.bind(this);
		boundReveal = boundReveal || reveal.bind(this);
		boundClean = boundClean || clean.bind(this);
		boundSync = boundSync || sync.bind(this);

		Object.defineProperty(this, 'delegate', { get: function () { return boundDelegate; } });
		Object.defineProperty(this, 'destroy', { get: function () { return boundDestroy; } });
		Object.defineProperty(this, 'reveal', { get: function () { return boundReveal; } });
		Object.defineProperty(this, 'clean', { get: function () { return boundClean; } });
		Object.defineProperty(this, 'sync', { get: function () { return boundSync; } });

		Object.defineProperty(this, 'defaults', { get: function () { return config; } });
		Object.defineProperty(this, 'version', { get: function () { return version; } });
		Object.defineProperty(this, 'noop', { get: function () { return false; } });

		return instance ? instance : (instance = this)
	}

	ScrollReveal.isSupported = function () { return isTransformSupported() && isTransitionSupported(); };

	Object.defineProperty(ScrollReveal, 'debug', {
		get: function () { return debug || false; },
		set: function (value) { return (debug = typeof value === 'boolean' ? value : debug); }
	});

	ScrollReveal();

	return ScrollReveal;

}));

================================================
FILE: docs/css/custom.css
================================================
html,body{
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 3px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #111827;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    height: 5px;
    background: linear-gradient(10deg, rgba(41, 173, 122, 1) 0%, rgba(61, 120, 172, 1) 100%);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(10deg, rgb(27, 123, 86) 0%, rgb(35, 76, 112)  100%);
  }

.ubl-bg-gradient {
    background: rgb(41, 173, 122);
    background: linear-gradient(90deg, rgba(41, 173, 122, 1) 0%, rgba(61, 120, 172, 1) 100%);
    animation: gradient 5s ease infinite;
}
.ubl-bg-learn4elixir {
    background: #4D0AA7;
}

.ubl-learn4elixir-logo{
    width: 15rem;
}

.ubl-simple-bg-gradient {
  background: rgb(41, 173, 122);
  background: linear-gradient(90deg, rgba(41, 173, 122, 1) 0%, rgba(61, 120, 172, 1) 100%);
}

.ubl-text-gradient{
    
    color: rgb(41, 173, 122);
    background: -webkit-linear-gradient(10deg, rgba(41, 173, 122, 1) 0%, rgba(61, 120, 172, 1) 100%);
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ubl-text-blue {
  color:rgba(61, 120, 172);
}

.ubl-text-green {
  color:rgba(41, 173, 122)
}

.ubl-bg-blue {
    background:rgba(61, 120, 172);
}

.ubl-bg-green {
    background:rgba(41, 173, 122)
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


================================================
FILE: docs/css/input.css
================================================
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,600&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

================================================
FILE: docs/css/output.css
================================================
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,600&display=swap');

/*
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::-webkit-backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container{
  width: 100%;
}

.\!container{
  width: 100% !important;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }

  .\!container{
    max-width: 640px !important;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }

  .\!container{
    max-width: 768px !important;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }

  .\!container{
    max-width: 1024px !important;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }

  .\!container{
    max-width: 1280px !important;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }

  .\!container{
    max-width: 1536px !important;
  }
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visible{
  visibility: visible;
}

.fixed{
  position: fixed;
}

.m-4{
  margin: 1rem;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.mx-8{
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-16{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}

.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-10{
  margin-left: 2.5rem;
}

.ml-4{
  margin-left: 1rem;
}

.-mr-2{
  margin-right: -0.5rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mt-14{
  margin-top: 3.5rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.-mt-6{
  margin-top: -1.5rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.mt-4{
  margin-top: 1rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.block{
  display: block;
}

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

.inline{
  display: inline;
}

.flex{
  display: flex;
}

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

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.h-\[120\%\]{
  height: 120%;
}

.h-full{
  height: 100%;
}

.h-16{
  height: 4rem;
}

.h-\[80\%\]{
  height: 80%;
}

.h-10{
  height: 2.5rem;
}

.h-8{
  height: 2rem;
}

.h-6{
  height: 1.5rem;
}

.h-screen{
  height: 100vh;
}

.w-full{
  width: 100%;
}

.w-14{
  width: 3.5rem;
}

.w-5\/6{
  width: 83.333333%;
}

.w-10{
  width: 2.5rem;
}

.w-6{
  width: 1.5rem;
}

.w-72{
  width: 18rem;
}

.w-96{
  width: 24rem;
}

.w-32{
  width: 8rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-screen-2xl{
  max-width: 1536px;
}

.max-w-lg{
  max-width: 32rem;
}

.max-w-5xl{
  max-width: 64rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-sm{
  max-width: 24rem;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize{
  resize: both;
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col{
  flex-direction: column;
}

.flex-wrap{
  flex-wrap: wrap;
}

.place-items-center{
  place-items: center;
}

.items-center{
  align-items: center;
}

.items-baseline{
  align-items: baseline;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.gap-8{
  gap: 2rem;
}

.gap-6{
  gap: 1.5rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.border-0{
  border-width: 0px;
}

.border{
  border-width: 1px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
}

.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.bg-gray-900\/80{
  background-color: rgb(17 24 39 / 0.8);
}

.bg-gray-900\/20{
  background-color: rgb(17 24 39 / 0.2);
}

.bg-gray-900\/90{
  background-color: rgb(17 24 39 / 0.9);
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-gray-800{
  --tw-gradient-from: #1f2937;
  --tw-gradient-to: rgb(31 41 55 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-800\/80{
  --tw-gradient-from: rgb(31 41 55 / 0.8);
  --tw-gradient-to: rgb(31 41 55 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-gray-800\/0{
  --tw-gradient-to: rgb(31 41 55 / 0);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(31 41 55 / 0), var(--tw-gradient-to);
}

.to-gray-800\/80{
  --tw-gradient-to: rgb(31 41 55 / 0.8);
}

.bg-cover{
  background-size: cover;
}

.bg-center{
  background-position: center;
}

.bg-no-repeat{
  background-repeat: no-repeat;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.p-2{
  padding: 0.5rem;
}

.p-4{
  padding: 1rem;
}

.p-8{
  padding: 2rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-12{
  padding-bottom: 3rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-\[2\.7rem\]{
  font-size: 2.7rem;
}

.text-5xl{
  font-size: 3rem;
  line-height: 1;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.font-thin{
  font-weight: 100;
}

.font-bold{
  font-weight: 700;
}

.uppercase{
  text-transform: uppercase;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-none{
  line-height: 1;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-gray-200{
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}

.text-gray-100{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity));
}

.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}

.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-50{
  --tw-text-opacity: 1;
  color: rgb(249 250 251 / var(--tw-text-opacity));
}

.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-teal-600{
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-gray-900{
  --tw-shadow-color: #111827;
  --tw-shadow: var(--tw-shadow-colored);
}

.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-filter{
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.\!transition{
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.duration-200{
  transition-duration: 200ms;
}

.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:bg-gray-900\/10:hover{
  background-color: rgb(17 24 39 / 0.1);
}

.hover\:text-white\/90:hover{
  color: rgb(255 255 255 / 0.9);
}

.hover\:text-white\/50:hover{
  color: rgb(255 255 255 / 0.5);
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:text-gray-700\/75:hover{
  color: rgb(55 65 81 / 0.75);
}

.hover\:shadow-none:hover{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}

@media (prefers-color-scheme: dark){
  .dark\:text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}

@media (min-width: 640px){
  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:ml-0{
    margin-left: 0px;
  }

  .sm\:mt-0{
    margin-top: 0px;
  }

  .sm\:-mt-20{
    margin-top: -5rem;
  }

  .sm\:inline-flex{
    display: inline-flex;
  }

  .sm\:h-\[90vh\]{
    height: 90vh;
  }

  .sm\:max-w-\[90\%\]{
    max-width: 90%;
  }

  .sm\:max-w-2xl{
    max-width: 42rem;
  }

  .sm\:max-w-lg{
    max-width: 32rem;
  }

  .sm\:max-w-4xl{
    max-width: 56rem;
  }

  .sm\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:bg-top{
    background-position: top;
  }

  .sm\:p-6{
    padding: 1.5rem;
  }

  .sm\:px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .sm\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .sm\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:text-center{
    text-align: center;
  }

  .sm\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 768px){
  .md\:ml-6{
    margin-left: 1.5rem;
  }

  .md\:block{
    display: block;
  }

  .md\:hidden{
    display: none;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:items-start{
    align-items: flex-start;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:pl-16{
    padding-left: 4rem;
  }

  .md\:text-left{
    text-align: left;
  }
}

@media (min-width: 1024px){
  .lg\:mb-0{
    margin-bottom: 0px;
  }

  .lg\:w-1\/2{
    width: 50%;
  }

  .lg\:max-w-lg{
    max-width: 32rem;
  }

  .lg\:flex-grow{
    flex-grow: 1;
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:gap-12{
    gap: 3rem;
  }

  .lg\:border-b-0{
    border-bottom-width: 0px;
  }

  .lg\:p-8{
    padding: 2rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:pl-24{
    padding-left: 6rem;
  }

  .lg\:pb-0{
    padding-bottom: 0px;
  }
}

================================================
FILE: docs/cursos.html
================================================
<!doctype html>
<html style="height: 100vh;">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Universidade Brasileira Livre</title>

  <meta name="title" content="Universidade Brasileira Livre ">
  <meta name="description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">



  <!-- Open Graph / Facebook -->
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://universidade-livre.github.io/">
  <meta property="og:title" content="Universidade Brasileira Livre">
  <meta property="og:description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">
  <meta property="og:image" content="./imgs/meta/meta-image.jpg">

  <script src="https://kit.fontawesome.com/0ce44bc7c0.js" crossorigin="anonymous"></script>

  <!-- Twitter -->
  <meta property="twitter:card" content="summary_large_image">
  <meta property="twitter:url" content="https://universidade-livre.github.io/">
  <meta property="twitter:title" content="Universidade Brasileira Livre">
  <meta property="twitter:description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">
  <meta property="twitter:image" content="./imgs/meta/meta-image.jpg">


  <link rel="apple-touch-icon" sizes="180x180" href="./imgs/favicon/apple-touch-icon.png">
  <link rel="icon" type="image/png" sizes="32x32" href="./imgs/favicon/favicon-32x32.png">
  <link rel="icon" type="image/png" sizes="16x16" href="./imgs/favicon/favicon-16x16.png">
  <link rel="manifest" href="./imgs/favicon/site.webmanifest">
  <link rel="mask-icon" href="./imgs/favicon/safari-pinned-tab.svg" color="#5bbad5">
  <meta name="msapplication-TileColor" content="#da532c">
  <meta name="theme-color" content="#ffffff">
  <link href="./css/custom.css" rel="stylesheet">
  <link href="./css/output.css" rel="stylesheet">
</head>

<body class="bg-gray-800 h-screen">

  <aside style="background-image: url(./imgs/background2.webp);"
    class="bg-cover bg-no-repeat  h-screen   sm:bg-top reveal_top">
    <section class="bg-gradient-to-t h-full from-gray-800 bg-gray-900/80  mx-auto flex flex-col">
      <section class="px-3 sm:px-7 pt-4 ">

        <div class="grid"> <!-- Adicionada a classe "grid" e "justify-center" -->


          <nav class="shadow-2xl shadow-gray-900 rounded-3xl scale_up  ubl-bg-gradient">
            <div class="max-w-7xl sm:max-w-[90%] mx-auto   ">
              <div class="flex items-center justify-between h-16  px-6 ">
                <div class="w-full justify-between flex items-center ">
                  <a class="flex-shrink-0" href="/">
                    <img class="w-14 ml-2 sm:ml-0" src="./imgs/simpleicon.png" alt="Workflow" />
                  </a>
                  <div class="hidden md:block">
                    <div class="ml-10 flex items-baseline space-x-4">
                      <a class="text-white  hover:text-white/90 px-3 py-2 rounded-md text-sm font-medium"
                        href="index.html">
                        Inicio
                      </a>
                      <a class="text-gray-200  hover:text-white/50  px-3 py-2 rounded-md text-sm font-medium"
                        href="index.html#about">
                        Sobre nós
                      </a>
                      <a class="text-gray-200  hover:text-white/50  px-3 py-2 rounded-md text-sm font-medium"
                        href="cursos.html">
                        Cursos
                      </a>
                      <a href="https://github.com/Universidade-Livre"
                        class="text-gray-200  hover:text-white/50  px-3 py-2 rounded-md text-sm font-medium">
                        Github
                      </a>
                    </div>
                  </div>
                </div>
                <div class="block">
                  <div class="ml-4 flex items-center md:ml-6">
                  </div>
                </div>
                <div class="-mr-2 flex md:hidden">
                  <button onclick="mobileMenuShow()"
                    class=" text-white inline-flex items-center text-2xl justify-center p-2 rounded-md focus:outline-none">
                    <i class="fa-solid fa-bars"></i>
                  </button>
                </div>
              </div>
            </div>
            <div style="display: none;" id="menuMobile" class="md:hidden">
              <div class="px-5 pt-2 pb-3 space-y-1 sm:px-3">
                <a class="text-white hover:text-white  block px-3 py-2 rounded-md text-base font-medium"
                  href="index.html">
                  Inicio
                </a>
                <a class="text-gray-100  hover:text-white block px-3 py-2 rounded-md text-base font-medium"
                  href="index.html#about">
                  Sobre nós
                </a>
                <a class="text-gray-100  hover:text-white block px-3 py-2 rounded-md text-base font-medium"
                  href="cursos.html">
                  Cursos
                </a>
                <a href="https://github.com/Universidade-Livre"
                  class="text-gray-100 hover:text-white  block px-3 py-2 rounded-md text-base font-medium">
                  Github
                </a>
              </div>
            </div>
          </nav>



        </div>
      </section>

      <section class=" text-white flex-row items-center justify-center bg-red-600 flex" style="flex: 1;">
        <div class="mt-8 grid gap-8 content-center items-center grid-cols-2 items-center p-4">
          <a href="https://github.com/Universidade-Livre/ciencia-da-computacao"
            class="block rounded-xl p-8 shadow-xl transition hover:bg-gray-900/10 hover:shadow-none bg-gray-900/20 scale_up"
            style="background-color: rgb(31 41 55 );">
            <div class="h-10 w-10 text-3xl ubl-text-gradient">
              <i class="fa-solid fa-laptop-code"></i>
            </div>
            <h2 class="mt-4 text-xl font-medium text-white">Ciência da Computação</h2>
            <p class="mt-1 text-lg font-thin text-gray-300">
              Um caminho para a educação autodidata em Ciência da Computação!
            </p>
          </a>
          <a href="https://github.com/Universidade-Livre/matematica"
            class="block rounded-xl p-8 shadow-xl transition hover:bg-gray-900/10 hover:shadow-none bg-gray-900/20 scale_up"
            style="background-color: rgb(31 41 55 );">
            <div class="h-10 w-10 text-3xl ubl-text-gradient">
              <i class="fa-solid fa-money-bill-wave"></i>
            </div>
            <h2 class="mt-4 text-xl font-medium text-white">Matemática</h2>
            <p class="mt-1 text-lg font-thin text-gray-300">
              Um caminho para a educação autodidata em Matemática!
            </p>
          </a>
        </div>

      </section>

      <footer aria-label="Site Footer" class="">
        <div class="mx-auto max-w-5xl px-4 sm:px-6 lg:px-8 py-16">
          <ul class=" flex justify-center gap-6 md:gap-8">
            <li>
              <a href="https://twitter.com/UBLivre" rel="noreferrer" target="_blank"
                class=" transition text-gray-400 text-2xl ">
                <span class="sr-only">Twitter</span>
                <i class="fa-brands fa-twitter"></i>
              </a>
            </li>

            <li>
              <a href="https://github.com/Universidade-Livre" rel="noreferrer" target="_blank"
                class=" transition text-gray-400 text-2xl ">
                <span class="sr-only">Github</span>
                <i class="fa-brands fa-github"></i>
              </a>
            </li>


            <li>
              <a href="https://discord.gg/dsvMraVaca " rel="noreferrer" target="_blank"
                class=" transition text-gray-400 text-2xl ">
                <span class="sr-only">Discord</span>
                <i class="fa-brands fa-discord"></i>
              </a>
            </li>





          </ul>
        </div>
      </footer>
</body>
<script>
  var x = document.getElementById("menuMobile");
  let menuMobileVar = 0
  function mobileMenuShow() {
    if (x.style.display === "none") {
      x.style.display = "block";
    } else {
      x.style.display = "none";
    }
  }
  window.addEventListener('resize', function (event) {
    x.style.display = "none"
  });
</script>

<script src="./assets/scrollreveal.js"></script>
<script>
  ScrollReveal({ reset: false });
  ScrollReveal().reveal('.reveal_flip', { rotate: { x: 20, z: 20 }, duration: 1000, delay: 300 });
  ScrollReveal().reveal('.reveal_bottom', { origin: 'bottom', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_top', { easing: 'ease-in-out', origin: 'top', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_left_delay', { origin: 'left', distance: '100px', delay: 700 });
  ScrollReveal().reveal('.reveal_left', { origin: 'left', distance: '100px', delay: 400, });
  ScrollReveal().reveal('.reveal_right', { origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.reveal_right_pic', { easing: "ease-in-out", origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.scale_up', { scale: 0.85, delay: 500 });
</script>

</html>

================================================
FILE: docs/imgs/favicon/browserconfig.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
    <msapplication>
        <tile>
            <square150x150logo src="/mstile-150x150.png"/>
            <TileColor>#da532c</TileColor>
        </tile>
    </msapplication>
</browserconfig>


================================================
FILE: docs/imgs/favicon/site.webmanifest
================================================
{
    "name": "",
    "short_name": "",
    "icons": [
        {
            "src": "/android-chrome-192x192.png",
            "sizes": "192x192",
            "type": "image/png"
        },
        {
            "src": "/android-chrome-256x256.png",
            "sizes": "256x256",
            "type": "image/png"
        }
    ],
    "theme_color": "#ffffff",
    "background_color": "#ffffff",
    "display": "standalone"
}


================================================
FILE: docs/index.html
================================================
<!doctype html>
<html>

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Universidade Brasileira Livre</title>
  <meta name="title" content="Universidade Brasileira Livre ">
  <meta name="description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">

  <!-- Open Graph / Facebook -->
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://universidade-livre.github.io/">
  <meta property="og:title" content="Universidade Brasileira Livre">
  <meta property="og:description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">
  <meta property="og:image" content="./imgs/meta/meta-image.jpg">

  <script src="https://kit.fontawesome.com/0ce44bc7c0.js" crossorigin="anonymous"></script>

  <!-- Twitter -->
  <meta property="twitter:card" content="summary_large_image">
  <meta property="twitter:url" content="https://universidade-livre.github.io/">
  <meta property="twitter:title" content="Universidade Brasileira Livre">
  <meta property="twitter:description"
    content="A Universidade Brasileira Livre é um projeto sem fins lucrativos que organiza o conteúdo online em pt-BR para aumentar o acesso de Brasileiros a educação!">
  <meta property="twitter:image" content="./imgs/meta/meta-image.jpg">
  <link rel="apple-touch-icon" sizes="180x180" href="./imgs/favicon/apple-touch-icon.png">
  <link rel="icon" type="image/png" sizes="32x32" href="./imgs/favicon/favicon-32x32.png">
  <link rel="icon" type="image/png" sizes="16x16" href="./imgs/favicon/favicon-16x16.png">
  <link rel="manifest" href="./imgs/favicon/site.webmanifest">
  <link rel="mask-icon" href="./imgs/favicon/safari-pinned-tab.svg" color="#5bbad5">
  <meta name="msapplication-TileColor" content="#da532c">
  <meta name="theme-color" content="#ffffff">
  <link href="./css/custom.css" rel="stylesheet">
  <link href="./css/output.css" rel="stylesheet">
</head>

<body class="bg-gray-800">

  <aside style="background-image: url(./imgs/background2.webp);"
    class="bg-cover bg-no-repeat  h-[120%] sm:h-[90vh]  sm:bg-top reveal_top">
    <section class="bg-gradient-to-t   h-full from-gray-800 bg-gray-900/80">
      <section class="px-3 sm:px-7 pt-4 ">
        <div>
          <nav class="shadow-2xl shadow-gray-900 rounded-3xl scale_up  ubl-bg-gradient" style="position: relative; z-index: 50;">
            <div class="max-w-7xl sm:max-w-[90%] mx-auto   ">
              <div class="flex items-center justify-between h-16  px-6 ">
                <div class="w-full justify-between flex items-center ">
                  <a class="flex-shrink-0" href="/">
                    <img class="w-14 ml-2 sm:ml-0" src="./imgs/simpleicon.png" alt="Workflow" />
                  </a>
                  <div class="hidden md:block">
                    <div class="ml-10 flex items-baseline space-x-4">
                      <a class="text-white  hover:text-white/90 px-3 py-2 rounded-md text-sm font-medium" href="">
                        Inicio
                      </a>
                      <a class="text-gray-200  hover:text-white/50  px-3 py-2 rounded-md text-sm font-medium"
                        href="#about">
                        Sobre nós
                      </a>
                      <a href="cursos.html"
                        class="text-gray-200  hover:text-white/50 px-3 py-2 rounded-md text-sm font-medium">
                        Cursos
                      </a>
                      <a href="https://github.com/Universidade-Livre"
                        class="text-gray-200  hover:text-white/50  px-3 py-2 rounded-md text-sm font-medium">
                        Github
                      </a>
                    </div>
                  </div>
                </div>
                <div class="block">
                  <div class="ml-4 flex items-center md:ml-6">
                  </div>
                </div>
                <div class="-mr-2 flex md:hidden">
                  <button onclick="mobileMenuShow()"
                    class=" text-white inline-flex items-center text-2xl justify-center p-2 rounded-md focus:outline-none">
                    <i class="fa-solid fa-bars"></i>
                  </button>
                </div>
              </div>
            </div>
            <div style="display: none;" id="menuMobile" class="md:hidden">
              <div class="px-5 pt-2 pb-3 space-y-1 sm:px-3">
                <a class="text-white hover:text-white  block px-3 py-2 rounded-md text-base font-medium" href="#">
                  Inicio
                </a>
                <a class="text-gray-100  hover:text-white block px-3 py-2 rounded-md text-base font-medium"
                  href="#about">
                  Sobre nós
                </a>
                <a href="cursos.html"
                  class="text-gray-100 hover:text-white block px-3 py-2 rounded-md text-base font-medium">
                  Cursos
                </a>
                <a href="https://github.com/Universidade-Livre"
                  class="text-gray-100 hover:text-white  block px-3 py-2 rounded-md text-base font-medium">
                  Github
                </a>
              </div>
            </div>
          </nav>
      </section>

      <section class=" flex items-center justify-center h-[80%] ">
        <section class=" scale_up body-font">
          <div class="container mx-auto flex px-8 py-20 sm:py-24 md:flex-row flex-col justify-center items-center">
            <div class="lg:max-w-lg  w-5/6 ">
              <img class="object-cover object-center rounded" alt="hero" src="./imgs/bannerubl.png">
            </div>
            <div
              class="lg:flex-grow md:w-1/2 sm:max-w-2xl lg:pl-24 md:pl-16 flex flex-col md:items-start md:text-left items-center text-center">
              <h1 class="hidden sm:inline-flex title-font  sm:text-5xl text-3xl mb-4 mt-14 font-semibold text-white/90">
                Bem-vindo a Universidade
                Brasileira Livre
              </h1>
              <p class="mt-10 sm:mt-0 mb-8 leading-relaxed text-xl font-thin sm:max-w-lg text-gray-300">Nós somos uma
                organização
                sem fins lucrativos fundada em 2021 que organiza o conteúdo online em português para aumentar o acesso
                de
                Brasileiros a educação!</p>
              <div class=" flex  justify-center items-center mt-8 sm:mt-0">
                <a href="#about"
                  class=" text-white ubl-bg-green border-0  text-center px-4 sm:px-9 py-2  focus:outline-none font-semibold rounded text-lg"><i
                    class="fa-solid fa-glasses mt-1 mr-2"></i> Sobre nós</a>
                <a href="https://github.com/Universidade-Livre"
                  class="ml-4  text-white ubl-bg-blue px-6 sm:px-9 text-center border-0 py-2 focus:outline-none font-semibold rounded text-lg"><i
                    class="fa-brands fa-github mt-1 mr-2"></i> Github</a>
              </div>
            </div>
          </div>
        </section>
      </section>
  </aside>
  </section>
  <section class="text-gray-600 body-font sm:-mt-20 -mt-6">
    <div class="container  mx-auto">

      <div class="grid grid-cols-2 sm:grid-cols-4 place-items-center text-center">
        <div class="p-4  w-full scale_up">
          <div class="  rounded-lg">
            <div class="fa-3xl text-[2.7rem]   inline-block ubl-text-gradient">
              <i class="fa-solid fa-people-group"></i>
            </div>
            <h2 class="title-font font-medium text-3xl text-gray-50 ">+8k</h2>
            <p class="leading-relaxed text-gray-400 font-thin ">Seguidores Totais</p>
          </div>
        </div>
        <div class="p-4 w-full  scale_up">
          <div class="  rounded-lg ">
            <div class="fa-3xl text-[2.7rem] inline-block ubl-text-gradient">
              <i class="fa-brands fa-github "></i>
            </div>
            <h2 class="title-font font-medium text-3xl text-gray-50">+19k</h2>
            <p class="leading-relaxed text-gray-400 font-thin">Estrelas no Github</p>
          </div>
        </div>
        <div class="p-4  w-full  scale_up">
          <div class="   rounded-lg">
            <div class="fa-3xl text-[2.7rem]  inline-block ubl-text-gradient">
              <i class="fa-solid fa-handshake-angle"></i>
            </div>
            <h2 class="title-font font-medium text-3xl text-gray-50">+5k</h2>
            <p class="leading-relaxed text-gray-400 font-thin">Membros no Discord/Telegram</p>
          </div>
        </div>
        <div class="p-4 w-full  scale_up">
          <div class="  rounded-lg">
            <div class="fa-3xl text-[2.7rem] inline-block ubl-text-gradient">
              <i class="fa-solid fa-graduation-cap"></i>
            </div>
            <h2 class="title-font font-medium text-3xl text-gray-50">02</h2>
            <p class="leading-relaxed text-gray-400 font-thin">Cursos Livres</p>
          </div>
        </div>

      </div>
    </div>
  </section>
<!-- SEÇÃO PARA EVENTOS, ALTERAR E DESCOMENTAR QUANDO NECESSÁRIO
  <section id="learn4elixir" class="bg-gray-800 text-white  ">
    <div class="mx-auto max-w-screen-2xl px-4 py-16 ">
      <div class=" sm:mx-auto  mx-8   max-w-lg sm:max-w-4xl sm:text-center  text-left reveal_bottom mb-16">
        <div class="mt-12 flex justify-center">
          <img class="ubl-learn4elixir-logo" src="./imgs/logo_learn4elixir.svg"></br>
        </div>
        <div class="">
          <p class="text-sm font-medium tracking-wider leading-none    uppercase">Learn4Elixir</p>
          <h2 class="text-3xl font-bold sm:text-4xl mb-8">Aprenda Elixir em 4 Pull Requests!</h2>
        </div>
        <p class="mt-4 font-thin sm:mx-0 text-lg text-gray-300">
          Durante o mês de Outubro, ocorre anualmente a <a href="https://hacktoberfest.com/"
            target="_blank">Hacktoberfest</a>, um evento no qual os participantes são
          incentivados a contribuir com projetos e comunidades aos quais já pertencem. No entanto, é notório que poucos
          se aventuram em experiências inéditas durante o evento, deixando de explorar novas possibilidades que poderiam
          ser fascinantes.
          O evento é uma oportunidade única para explorar novas áreas da programação e, neste ano, convidamos você a
          experimentar algo novo: a linguagem de programação Elixir. Desafie-se a aprender e contribuir para projetos em
          Elixir, expandindo assim suas habilidades e conhecimentos.
        </p></br>
        <button onclick="window.location.href = 'https://github.com/universidade-Livre/learn4Elixir'"
          class="py-3 px-4 ubl-bg-learn4elixir text-white w-full transition ease-in duration-200 text-center text-xl font-medium shadow-md focus:outline-none focus:ring-2 focus:ring-offset-2  rounded-lg ">
          Acessar o repositório <i class="ml-2 fa-solid fa-arrow-right"></i>
        </button>
      </div>
    </div>
  </section> 
SEÇÃO PARA EVENTOS, ALTERAR E DESCOMENTAR QUANDO NECESSÁRIO -->

  <section id="about" class="bg-gray-800 text-white  ">
    <div class="mx-auto max-w-screen-2xl px-4 py-16 ">
      <div class=" sm:mx-auto  mx-8   max-w-lg sm:max-w-4xl sm:text-center  text-left reveal_bottom mb-16">
        <div class="">
          <p class="text-sm font-medium tracking-wider leading-none    uppercase">Vamos descobrir</p>
          <h2 class="text-3xl font-bold sm:text-4xl mb-8">Um pouco sobre nós</h2>
        </div>
        <p class="mt-4 font-thin sm:mx-0 text-lg text-gray-300">
          A Universidade Livre Brasileira é um projeto inspirado na Open Source Society University (OSSU). É uma
          comunidade sem fins lucrativos de apoio de estudantes de todos os níveis que ajudam uns aos outros e
          compartilham suas experiências e conhecimentos em torno de diferentes currículos de código aberto.
        </p>
      </div>
      <div class="mt-8 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3 m-4 sm:mx-0">
        <a
          class="block rounded-xl  p-8 shadow-xl transition hover:bg-gray-900/10 hover:shadow-none bg-gray-900/20  scale_up">
          <div class="h-10 w-10 text-3xl ubl-text-gradient"><i class="fa-solid fa-laptop-code"></i></div>
          <h2 class="mt-4 text-xl font-medium text-white">Software Livre</h2>
          <p class="mt-1 text-lg font-thin text-gray-300">
            Com nossas bases estabalecidas na GNU e Free Software Foudation, todos os nossos cursos e aplicações são de
            livre
            acesso e contribuição pela comunidade.
          </p>
        </a>
        <a
          class="block rounded-xl p-8 shadow-xl transition  hover:bg-gray-900/10 hover:shadow-none bg-gray-900/20 scale_up">
          <div class="h-10 w-10 text-3xl ubl-text-gradient"><i class="fa-solid fa-money-bill-wave"></i></div>
          <h2 class="mt-4 text-xl font-medium text-white">Totalmente Gratuito</h2>
          <p class="mt-1 text-lg font-thin text-gray-300">
            Nossos cursos e aplicações são completamente gratuitos, pois buscamos levar educação de alta qualidade para
            todos, independentemente de sua condição socioeconômica.
          </p>
        </a>
        <a
          class="block rounded-xl  p-8 shadow-xl transition hover:bg-gray-900/10 hover:shadow-none  bg-gray-900/20 scale_up">
          <div class="h-10 w-10 text-3xl ubl-text-gradient"><i class="fa-solid fa-people-roof"></i></div>
          <h2 class="mt-4 text-xl font-medium text-white"> Comunidade Voluntária</h2>
          <p class="mt-1 text-lg font-thin text-gray-300">
            Como nós somos uma comunidade sem fins lucrativos e criada com apoio de apoio de estudantes, somos mantidos
            por
            forma voluntária pelos nossos membros colaboradores.
          </p>
        </a>
      </div>
    </div>
  </section>

  <section class="my-16 scale_up">
    <aside style="background-image: url(./imgs/background4.webp);" class=" bg-cover bg-center">
      <div class="bg-gray-900/90 bg-gradient-to-r from-gray-800/80 via-gray-800/0 to-gray-800/80">
        <img class="w-full" src="./imgs/divider-wave-dark.svg">
        <div class="px-8 py-16 sm:py-0">
          <section>
            <div class="container max-w-7xl mx-auto  sm:p-6 lg:p-8 ">
              <div class="flex flex-wrap items-center">
                <div class="w-full lg:w-1/2 ">
                  <div class="mb-12 lg:mb-0 pb-12 mx-3 lg:pb-0 border-b-2 lg:border-b-0 border-gray-600 scale_up">
                    <p class="text-sm font-medium tracking-wider leading-none  text-gray-200   uppercase">Como eu
                      posso</p>
                    <h2 class="mb-4 text-3xl -mr- sm:text-4xl font-medium  text-white">

                      Virar um colaborador?
                    </h2>
                    <p class="mb-8 font-thin text-xl text-gray-300 ">
                      Para se tornar um colaborador da UBL, você pode ser tanto um patrocinador pelo nosso <a
                        class="ubl-text-green" href="https://github.com/sponsors/Universidade-Livre">github clicando
                        aqui</a>, tanto colaborando de forma voluntária para os nossos <a
                        href="https://github.com/Universidade-Livre" class="ubl-text-blue">projetos e cursos
                        open-souce</a>, além de que também pode fazer parte na nossa comunidade no telegram fazendo
                      amigos e ajudando outros estudantes com duvidas e etc.
                    </p>
                    <div class="w-full  ">
                      <button onclick="window.location.href = 'https://t.me/universidadebrasileiralivre  '"
                        class="py-3 px-4 ubl-bg-gradient  text-white w-full transition ease-in duration-200 text-center text-xl font-medium shadow-md focus:outline-none focus:ring-2 focus:ring-offset-2  rounded-lg ">
                        Acessar nosso telegram <i class="ml-2 fa-solid fa-arrow-right"></i>
                      </button>
                    </div>
                  </div>
                </div>
                <div class="w-full lg:w-1/2 ">
                  <ul class="space-y-12">
                    <li class="flex -mx-4">
                      <div class=" px-8 scale_up">
                        <h3 class="my-2 text-2xl font-semibold dark:text-white">
                          <i class="fa-solid fa-file-code mr-2 ubl-text-gradient"></i> Por que ser colaborador?
                        </h3>
                        <p class="text-gray-300 font-thin text-xl  ">
                          Além de aumentar seus conhecimentos de programação e trabalho em grupo, todas as suas
                          colaborações são publicas, ajudando na construção do seu portifólio pessoal e profissional
                          além de ajudar a nossa comunidade. </p>
                      </div>
                    </li>
                    <li class="flex -mx-4">
                      <div class="px-8 scale_up">
                        <h3 class="my-2 text-2xl font-semibold dark:text-white">
                          <i class="fa-solid fa-handshake-angle mr-2 ubl-text-gradient"></i> Por que nos patrocinar?
                        </h3>
                        <p class="text-gray-300  font-thin text-xl ">
                          Como não possuimos nem queremos nenhum tipo de lucro com a nossa comunidade, a ajuda de
                          patrocinadores é essêncial para manutenção de diversos serviços terceirizados e pagos que
                          utilizamos.
                        </p>
                      </div>
                    </li>
                  </ul>
                </div>
              </div>
            </div>
          </section>
        </div>
        <img class="rotate-180" src="./imgs/divider-wave-dark.svg">
      </div>
    </aside>
  </section>

  <section class="mx-8  sm:mx-0">
  </section>
  <footer aria-label="Site Footer" class="">
    <div class="mx-auto max-w-5xl px-4 py-16 sm:px-6 lg:px-8">
      <!-- <div class="flex justify-center ">
      
      </div> -->

      <!-- <p class="mx-auto mt-6 max-w-md text-center leading-relaxed text-gray-500">
        Lorem ipsum dolor, sit amet consectetur adipisicing elit. Incidunt
        consequuntur amet culpa cum itaque neque.
      </p> -->

      <!-- <nav aria-label="Footer Nav" class="mt-12">
        <ul class="flex flex-wrap justify-center gap-6 md:gap-8 lg:gap-12">
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
              Algo
            </a>
          </li>
  
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
                Algo
            </a>
          </li>
  
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
                Algo
            </a>
          </li>
  
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
                Algo
            </a>
          </li>
  
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
              Algo
            </a>
          </li>
  
          <li>
            <a class="text-gray-700 transition hover:text-gray-700/75" href="/">
              Algo
            </a>
          </li>
        </ul>
      </nav> -->
      <ul class="mt-12 flex justify-center gap-6 md:gap-8">
        <li>
          <a href="https://bsky.app/profile/ulivre.dev" rel="noreferrer" target="_blank"
            class=" transition text-gray-400 text-2xl ">
            <span class="sr-only">BlueSky</span>
            <i class="fa-brands fa-bluesky"></i>
          </a>
        </li>
        <li>
          <a href="https://github.com/Universidade-Livre" rel="noreferrer" target="_blank"
            class=" transition text-gray-400 text-2xl ">
            <span class="sr-only">Github</span>
            <i class="fa-brands fa-github"></i>
          </a>
        </li>
        <li>
          <a href="t.me/universidadebrasileiralivre " rel="noreferrer" target="_blank"
            class=" transition text-gray-400 text-2xl ">
            <span class="sr-only">Telegram</span>
            <i class="fa-brands fa-telegram"></i>
          </a>
        </li>
      </ul>
    </div>
  </footer>
</body>
<script>
  var x = document.getElementById("menuMobile");
  let menuMobileVar = 0
  function mobileMenuShow() {
    if (x.style.display === "none") {
      x.style.display = "block";
    } else {
      x.style.display = "none";
    }
  }
  window.addEventListener('resize', function (event) {
    x.style.display = "none"
  });
</script>

<script src="./assets/scrollreveal.js"></script>
<script>
  ScrollReveal({ reset: false });
  ScrollReveal().reveal('.reveal_flip', { rotate: { x: 20, z: 20 }, duration: 1000, delay: 300 });
  ScrollReveal().reveal('.reveal_bottom', { origin: 'bottom', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_top', { easing: 'ease-in-out', origin: 'top', distance: '400px', delay: 300 });
  ScrollReveal().reveal('.reveal_left_delay', { origin: 'left', distance: '100px', delay: 700 });
  ScrollReveal().reveal('.reveal_left', { origin: 'left', distance: '100px', delay: 400, });
  ScrollReveal().reveal('.reveal_right', { origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.reveal_right_pic', { easing: "ease-in-out", origin: 'right', distance: '100px', delay: 400 });
  ScrollReveal().reveal('.scale_up', { scale: 0.85, delay: 500 });
</script>


</html>



================================================
FILE: package.json
================================================
{
  "devDependencies": {
    "tailwindcss": "^3.2.4"
  },
  "dependencies": {
    "daisyui": "^2.17.0"
  }
}


================================================
FILE: tailwind.config.js
================================================
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./docs/**/*.{html,js}"],
  theme: {
    extend: { fontFamily: {
      Montserrat: ['Montserrat', "sans-serif"],
     }},
  },
  plugins: [    require('tailwindcss'),
  require('autoprefixer')],
}
Download .txt
gitextract_cs0gqsyu/

├── .gitignore
├── .vscode/
│   └── settings.json
├── docs/
│   ├── CNAME
│   ├── alert/
│   │   └── index.html
│   ├── assets/
│   │   └── scrollreveal.js
│   ├── css/
│   │   ├── custom.css
│   │   ├── input.css
│   │   └── output.css
│   ├── cursos.html
│   ├── imgs/
│   │   └── favicon/
│   │       ├── browserconfig.xml
│   │       └── site.webmanifest
│   └── index.html
├── package.json
└── tailwind.config.js
Download .txt
SYMBOL INDEX (45 symbols across 1 files)

FILE: docs/assets/scrollreveal.js
  function failure (line 51) | function failure() {
  function success (line 65) | function success() {
  function isDomNode (line 102) | function isDomNode(x) {
  function isDomNodeList (line 135) | function isDomNodeList(x) {
  function tealight (line 172) | function tealight(target, context) {
  function isObject (line 189) | function isObject(x) {
  function each (line 198) | function each(collection, callback) {
  function logger (line 209) | function logger(message) {
  function rinse (line 220) | function rinse() {
  function format (line 334) | function format(source) {
  function identity (line 362) | function identity() {
  function multiply (line 383) | function multiply(m, x) {
  function parse (line 414) | function parse(source) {
  function rotateX (line 431) | function rotateX(angle) {
  function rotateY (line 448) | function rotateY(angle) {
  function rotateZ (line 465) | function rotateZ(angle) {
  function scale (line 485) | function scale(scalar, scalarY) {
  function translateX (line 500) | function translateX(distance) {
  function translateY (line 512) | function translateY(distance) {
  function getPrefixedCssProperty (line 522) | function getPrefixedCssProperty(name, source) {
  function style (line 545) | function style(element) {
  function applyStyle (line 762) | function applyStyle (el, declaration) {
  function clean (line 773) | function clean(target) {
  function destroy (line 804) | function destroy() {
  function deepAssign (line 836) | function deepAssign(target) {
  function isMobile (line 859) | function isMobile(agent) {
  function initialize (line 870) | function initialize() {
  function animate (line 912) | function animate(element, force) {
  function triggerReveal (line 933) | function triggerReveal(element, delayed) {
  function triggerReset (line 949) | function triggerReset(element) {
  function registerCallbacks (line 961) | function registerCallbacks(element, isDelayed) {
  function sequence (line 996) | function sequence(element, pristine) {
  function Sequence (line 1059) | function Sequence(interval) {
  function SequenceModel (line 1075) | function SequenceModel(seq, prop, store) {
  function cue (line 1103) | function cue(seq, i, direction, pristine) {
  function reveal (line 1120) | function reveal(target, options, syncing) {
  function getContainerId (line 1251) | function getContainerId(node) {
  function sync (line 1270) | function sync() {
  function getGeometry (line 1325) | function getGeometry(target, isContainer) {
  function getScrolled (line 1359) | function getScrolled(container) {
  function isElementVisible (line 1371) | function isElementVisible(element) {
  function delegate (line 1404) | function delegate(
  function isTransformSupported (line 1454) | function isTransformSupported() {
  function isTransitionSupported (line 1459) | function isTransitionSupported() {
  function ScrollReveal (line 1475) | function ScrollReveal(options) {
Condensed preview — 14 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (122K chars).
[
  {
    "path": ".gitignore",
    "chars": 1609,
    "preview": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\nlerna-debug.log*\n\n# Diagnostic reports (https://nodejs."
  },
  {
    "path": ".vscode/settings.json",
    "chars": 42,
    "preview": "{\r\n    \"liveServer.settings.port\": 5501\r\n}"
  },
  {
    "path": "docs/CNAME",
    "chars": 10,
    "preview": "ulivre.dev"
  },
  {
    "path": "docs/alert/index.html",
    "chars": 3517,
    "preview": "<!doctype html>\r\n<html>\r\n\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initia"
  },
  {
    "path": "docs/assets/scrollreveal.js",
    "chars": 44626,
    "preview": "/*! @license ScrollReveal v4.0.9\n\n\tCopyright 2021 Fisssion LLC.\n\n\tLicensed under the GNU General Public License 3.0 for\n"
  },
  {
    "path": "docs/css/custom.css",
    "chars": 1816,
    "preview": "html,body{\r\n  scroll-behavior: smooth;\r\n}\r\n::-webkit-scrollbar {\r\n    width: 3px;\r\n  }\r\n  \r\n  /* Track */\r\n  ::-webkit-s"
  },
  {
    "path": "docs/css/input.css",
    "chars": 158,
    "preview": "@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,600&display=swap');\r\n@tailwind base;\r\n@tail"
  },
  {
    "path": "docs/css/output.css",
    "chars": 26658,
    "preview": "@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,600&display=swap');\n\n/*\n! tailwindcss v3.2."
  },
  {
    "path": "docs/cursos.html",
    "chars": 9595,
    "preview": "<!doctype html>\n<html style=\"height: 100vh;\">\n\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=de"
  },
  {
    "path": "docs/imgs/favicon/browserconfig.xml",
    "chars": 246,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<browserconfig>\n    <msapplication>\n        <tile>\n            <square150x150logo"
  },
  {
    "path": "docs/imgs/favicon/site.webmanifest",
    "chars": 426,
    "preview": "{\n    \"name\": \"\",\n    \"short_name\": \"\",\n    \"icons\": [\n        {\n            \"src\": \"/android-chrome-192x192.png\",\n     "
  },
  {
    "path": "docs/index.html",
    "chars": 22294,
    "preview": "<!doctype html>\r\n<html>\r\n\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initia"
  },
  {
    "path": "package.json",
    "chars": 109,
    "preview": "{\n  \"devDependencies\": {\n    \"tailwindcss\": \"^3.2.4\"\n  },\n  \"dependencies\": {\n    \"daisyui\": \"^2.17.0\"\n  }\n}\n"
  },
  {
    "path": "tailwind.config.js",
    "chars": 272,
    "preview": "/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n  content: [\"./docs/**/*.{html,js}\"],\n  theme: {\n    exte"
  }
]

About this extraction

This page contains the full source code of the Universidade-Livre/universidade-livre.github.io GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 14 files (108.8 KB), approximately 31.3k tokens, and a symbol index with 45 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!