Initial commit
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
|||||||
|
FROM nginx
|
||||||
|
MAINTAINER Joakim Olsson <joakim@unbound.se>
|
||||||
|
|
||||||
|
ADD files/*.html /usr/share/nginx/html/
|
||||||
|
|
||||||
|
ADD files/styles/*.css /usr/share/nginx/html/styles/
|
||||||
|
|
||||||
|
ADD default.conf /etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
|
ENV ALLOW_HUP true
|
||||||
|
ENV ROTATE_LOGS true
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name localhost;
|
||||||
|
|
||||||
|
access_log /log/access.log combined;
|
||||||
|
error_log /log/error.log error;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
}
|
||||||
|
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
location = /50x.html {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
google-site-verification: googled2a7a9aeee680deb.html
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
googleffffffffe33a2cf0
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Unbound Software Development</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="styles/default.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<span class="title">Unbound</span><br>
|
||||||
|
<span class="subtitle">Software Development</span><br>
|
||||||
|
<br>
|
||||||
|
Denna site är under uppbyggnad.<br><br>
|
||||||
|
<a href=mailto:joakim@unbound.se>Joakim Olsson</a>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||||
|
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
try {
|
||||||
|
var pageTracker = _gat._getTracker("UA-10302082-2");
|
||||||
|
pageTracker._trackPageview();
|
||||||
|
} catch(err) {}</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
body {
|
||||||
|
background: #203050;
|
||||||
|
color: #D0D0D0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: #D0D0D0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #F0C000;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#logo {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
color: #D0D0D0;
|
||||||
|
font-family: impact;
|
||||||
|
font-size: 40px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
color: #D0D0D0;
|
||||||
|
font-family: impact;
|
||||||
|
font-size: 15px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#nav {
|
||||||
|
list-style: none;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#nav li {
|
||||||
|
float: left;
|
||||||
|
width: 80px;
|
||||||
|
height: 30px;
|
||||||
|
/*border-left: 2px solid #D0D0D0;
|
||||||
|
border-top: 2px solid #D0D0D0;
|
||||||
|
border-right: 2px solid #A0A0A0;
|
||||||
|
border-bottom: 0px; */
|
||||||
|
background-color: #B8B8B8;
|
||||||
|
color: #000000;
|
||||||
|
font-family: verdana, sans;
|
||||||
|
font-size: 0.8em;
|
||||||
|
font-weight: 700;
|
||||||
|
text-align: center;
|
||||||
|
text-vertical-align: middle;
|
||||||
|
margin: 1px;
|
||||||
|
/*border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#nav li.selected {
|
||||||
|
border-left: 2px solid #D00000;
|
||||||
|
border-top: 2px solid #D00000;
|
||||||
|
border-right: 2px solid #A00000;
|
||||||
|
background-color: #B80000;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtop, .rbottom {
|
||||||
|
display:block;
|
||||||
|
background-color: #203050;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtop *, .rbottom * {
|
||||||
|
display: block;
|
||||||
|
background-color: #B8B8B8;
|
||||||
|
height: 1px;
|
||||||
|
overflow: hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
.r1 {
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r2 {
|
||||||
|
margin: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r3 {
|
||||||
|
margin: 0 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r4 {
|
||||||
|
margin: 0 1px;
|
||||||
|
height: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user