summaryrefslogtreecommitdiff
path: root/static/style.css
blob: 4006122af04f9466c7ded062f682cb61917c9baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
	CSS based originally on a style by Oliver Weissbarth, modified by Maxiliam Moehring.
	http://oweissbarth.de
	http://files.iamfabulous.de
*/

@font-face
{
	font-family: 'Alegreya Sans SC';
	src: url("alegreya_sans_sc.woff");
}
/***************************************************************
					General Page Styling
****************************************************************/
*{
	margin: 0;
	padding: 0;
}
html, body{
	height: 100%;
	font-family: 'Alegreya Sans SC', sans-serif;
}



/***************************************************************
					Header
****************************************************************/
#header-bar{
	background-color: #3083D6;
	height: 80px;
	width: 100%; 
	position: fixed;
	color: white;
}

a.logo{
	display: inline-block; 
	height: 70px;
	width: 70px;
	margin-top: 5px;
	margin-left: 5px;
	background-image: url(logo3.png);
	background-repeat:no-repeat;
	background-size:66px 66px;
	background-color:#3083D6;
	background-position: center;
	z-index: 99;
}



a.logo:hover{
	display: block;
	background:#2669AB;
	background-image: url(logo3.png);
	background-repeat:no-repeat;
	background-size:66px 66px;
	background-position: center;
	border-radius: 10px;
	box-shadow: 3px -3px 5px black;
}



/************************************************************
				Page-Wrap for sticky footer
*************************************************************/
#page-wrap{
	width: 100%;
	min-height: 100%;
}

/**********************************************************
					Content-Area
**********************************************************/
#content-area{
	width: 100%;
	padding-top: 80px;
	padding-bottom: 25px;
}


/******************************************************
				FOOTER
*******************************************************/
footer{
	height: 25px;
	width: 100%;
	position: relative;
	margin-top: -25px;
	clear: both;
	background-color:#3083D6;
}

#copyright-text{
	margin-right: 10px;
	text-align: right;
	font-size: 12px;
	font-weight: normal;
	color: white;
}

#gitlink{
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	color: white;
	display: inline;
}