<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=============================================================================
* stylesheet for parapascal
* Author: Damir Cohadarevic
* Date: 2012-11-18
* License: none (public domain)
*============================================================================*/ 

/*=============================================================================
* global styles
*============================================================================*/ 
body {
    background: URL('background.png'), #00c URL('v-gradient-00c-0ff.png') repeat-x;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "DejaVu Sans", Lucida, Arial, Helvetica, sans-serif;
    position: relative;
}

a {
    text-decoration: none;
    color: white;
}

a.external {
    padding-right: 13px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAVklEQVR4Xn3PgQkAMQhDUXfqTu7kTtkpd5RA8AInfArtQ2iRXFWT2QedAfttj2FsPIOE1eCOlEuoWWjgzYaB/IkeGOrxXhqB+uA9Bfcm0lAZuh+YIeAD+cAqSz4kCMUAAAAASUVORK5CYII=") no-repeat scroll right center transparent;
}

/*=============================================================================
* header
*============================================================================*/ 
.header
{
	background: transparent;
	padding-top: 20px;
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
}

.header img{
    padding-bottom: 10px;
}

.header h1 { 
    margin: 0; 
    font-size: 250%;
    font-weight: bold;
}

/*=============================================================================
* nav - navigation links
*============================================================================*/
.nav
{
	background: transparent;
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
	width: 100%;
    border: none;
}

.nav ul
{
	margin: 0;
    padding: 0;
}

.nav ul li
{
	list-style-type: none;
	display: inline;
    line-height: 40px;
}

.nav li a
{
    color: #000;
    background: #00c;
    font-weight: bold;
	/*
    display: block;
	float: left;*/
	padding: 5px 10px;
	text-decoration: none;
	border: 2px solid #000;
    border-radius: 7px;
}

.nav li a:hover { 
    color: #fff;
    border: 2px solid #fff;
}

/*=============================================================================
* content
*============================================================================*/
#content
{
    color: #0ff;
    background: rgba(0,0,0,0.5);
    
	padding-top: 1em;
    padding-bottom: 1em;
	margin-top: 1em;
    margin-bottom: 1em;

	display: block;
    text-align: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    
    padding-left: 0.5%;
    padding-right: 0.5%;
    margin-left: auto;
    margin-right: auto;
    width: 99%;
    max-width: 600px;
}

#content h2 { margin: 0; }

.screenshot{
    width: 90%;
    height: auto;
}

/*=============================================================================
* aside
*============================================================================*/
.aside
{
    color: #0ff;
    background: rgba(0,0,0,0.5);
    
	padding-top: 1em;
    padding-bottom: 1em;
	margin-top: 1em;
    margin-bottom: 1em;    
    
    margin-top: 0;
    margin-bottom: 10px;
	display: block;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    
    padding-left: 0.5%;
    padding-right: 0.5%;
    margin-left: auto;
    margin-right: auto;
    width: 99%;
    max-width: 600px;
}

.aside ul {
	list-style: disc;
    padding-left: 17px;
}

/*=============================================================================
* footer
*============================================================================*/
.footer
{
    color: #0ff;
    background: rgba(0,0,0,0.5);
    width: 100%;
	text-align: center;
	padding: 10px 0px;
	height: 1%;
    border-top: 2px solid black;
}

.linkedin {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0px;
}

</pre></body></html>