Skip to content

Commit 4148a60

Browse files
committed
code cleanp & design change
1 parent da8cc3a commit 4148a60

9 files changed

+239
-217
lines changed

README.md

100644100755
+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
## lambda.co.at website
1+
### lambda.co.at website
22

3-
### Remarks
3+
##### Remarks:
44
* pure html5, css3 and SVG.
5+
6+
##### TODO:
57
* marketing blah blah needs to change over time.
68

7-
### All rights reserved
9+
#### All rights reserved

gsaz.css

100644100755
+119-113
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,120 @@
1-
/********************************
2-
******A********S********M*******
3-
********************************/
4-
#logo {
5-
width: 750px;
6-
margin: 0 auto;
7-
padding 0px;
8-
text-align: center;
9-
}
10-
#wraptocenter {
11-
width: 750px;
12-
height: 500px;
13-
margin: 0 auto;
14-
text-align: center;
15-
padding: 15px;
16-
margin-top: 0px;
17-
border-top: 1px dotted #c0c0c0;
18-
border-right: 1px dotted #c0c0c0;
19-
border-left: 1px dotted #c0c0c0;
20-
border-radius: 25px;
21-
box-shadow: 0px 0px 25px #c0c0c0;
22-
}
23-
#motto {
24-
padding: 25px;
25-
font-size: 16pt;
26-
letter-spacing: 4px;
27-
word-spacing: 5px;
28-
font-weight: bold;
29-
}
30-
body {
31-
font-family: 'Shanti', sans-serif;
32-
font-size: 10pt;
33-
margin: 0 0 auto;
34-
}
35-
#keywords {
36-
text-align: left;
37-
font-style: oblique;
38-
font-size: 8pt;
39-
padding: 5px;
40-
}
41-
a {
42-
color: #000000;
43-
text-decoration:none;
44-
}
45-
a:hover {
46-
border-bottom: 1px solid #c0c0c0;
47-
}
48-
p {
49-
margin: 2px;
50-
}
51-
#left {
52-
text-align: left;
53-
padding: 25px;
54-
}
55-
h2 {
56-
font-size: 11pt;
57-
font-weight: bold;
58-
padding: 8px;
59-
margin: 8px;
60-
}
61-
.button {
62-
position: absolute;
63-
right: 350px;
64-
width: 40px;
65-
top: 0px;
66-
color: #c0c0c0;
67-
text-shadow: 1px 1px 1px #c0c0c0;
68-
z-index: 9000;
69-
border: 1px dotted #c0c0c0;
70-
box-shadow: 1px 2px #c0c0c0;
71-
padding: 10px 25px;
72-
border-radius: 10px;
731

74-
border-top-left-radius: 0;
75-
border-top-right-radius: 0;
76-
}
77-
.button:hover {
78-
border: 1px dotted #c0c0c0;
79-
box-shadow: 0px 0px 20px 5px #000000;
80-
text-shadow: 0px 5px 20px #000000;
81-
}
82-
.button:nth-child(4n+1) {
83-
width: 40px;
84-
right: 450px;
85-
}
86-
.button:nth-child(4n+2) {
87-
width: 40px;
88-
right: 550px;
89-
}
90-
.button:nth-child(4n+3) {
91-
width: 40px;
92-
right: 650px;
93-
}
94-
a.buttonl {
95-
color: #c0c0c0;
96-
text-decoration:none;
97-
font-weight: bold;
98-
border: 0;
99-
}
100-
a.buttonl:hover {
101-
color: #000000;
102-
}
103-
address {
104-
font-style: normal;
105-
}
106-
footer {
107-
/* logo is MINE! take whatever else you like. */
108-
position: relative;
109-
bottom: 0;
110-
font-size: 7pt;
111-
padding: 10px;
112-
text-align: center;
113-
}
114-
//GSAZ - GROESSTES STYLESHEET ALLER ZEITEN//
2+
/********************************************
3+
************A********S********M*************
4+
********************************************/
5+
6+
7+
body {
8+
font-family: 'Shanti', sans-serif;
9+
font-size: 10pt;
10+
font-weight: lighter;
11+
margin: 0 0 auto;
12+
}
13+
a {
14+
color: #000000;
15+
text-decoration: none;
16+
}
17+
a:hover {
18+
border-bottom: 1px solid #c0c0c0;
19+
}
20+
p {
21+
margin: 2px;
22+
}
23+
img {
24+
border: 0px;
25+
}
26+
h2 {
27+
font-size: 11pt;
28+
font-weight: inherit;
29+
padding: 8px;
30+
margin: 8px;
31+
}
32+
address {
33+
font-style: normal;
34+
}
35+
nav {
36+
width: 600px;
37+
height: 60px;
38+
margin: 0 auto;
39+
overflow: hidden;
40+
}
41+
nav ul {
42+
margin: 0 auto;
43+
list-style: none;
44+
text-align: center;
45+
}
46+
nav li {
47+
width: 60px;
48+
float: left;
49+
margin: 0 10px 0 0;
50+
color: #000000;
51+
padding: 10px 30px;
52+
text-shadow: 1px 1px 1px #c0c0c0;
53+
border: 1px solid #000000;
54+
border-top: 0px;
55+
box-shadow: 1px 2px #c0c0c0;
56+
border-radius: 0 0 10px 10px;
57+
}
58+
nav li:hover {
59+
border: 1px solid #c0c0c0;
60+
box-shadow: 0px 0px 20px 6px #000000;
61+
text-shadow: 0px 6px 20px #000000;
62+
}
63+
nav li a {
64+
color: #000000;
65+
text-decoration: none;
66+
border: 0;
67+
}
68+
nav li a:hover {
69+
color: #000000;
70+
border-bottom: 1px solid #c0c0c0;
71+
text-shadow: 0px 6px 12px #000000;
72+
}
73+
footer {
74+
width: 100%;
75+
position: absolute;
76+
bottom: 0;
77+
font-size: 7pt;
78+
padding: 10px;
79+
text-align: center;
80+
}
81+
ul {
82+
list-style-type: lower-greek;
83+
}
84+
#logo {
85+
width: 750px;
86+
margin: 0 auto;
87+
padding: 0px;
88+
text-align: center;
89+
}
90+
#logo a {
91+
border: 0px;
92+
}
93+
#tagline {
94+
padding: 25px;
95+
font-size: 14pt;
96+
letter-spacing: 2px;
97+
word-spacing: 4px;
98+
font-style: oblique;
99+
}
100+
#wrap {
101+
width: 750px;
102+
margin: 0 auto;
103+
text-align: center;
104+
padding: 15px;
105+
margin-top: 0px;
106+
border-radius: 25px;
107+
box-shadow: 0px 25px 45px #000000;
108+
}
109+
#keywords {
110+
font-style: oblique;
111+
font-size: 8pt;
112+
padding: 25px;
113+
}
114+
#left {
115+
text-align: left;
116+
padding: 0 0 25px 25px;
117+
}
118+
#left h2 {
119+
padding: 0px;
120+
}

imprint.html

100644100755
+38-51
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,49 @@
11
<!DOCTYPE html>
2-
<head>
2+
<head>
33
<meta charset="utf-8">
4-
<title>lambda - Scaling and Securing Distributed Systems</title>
5-
<link href='gsaz.css' rel='stylesheet' type='text/css' />
6-
<link href='http://fonts.googleapis.com/css?family=Shanti' rel='stylesheet' type='text/css' />
4+
<base href="http://lambda.co.at">
5+
<title>lambda - Highly-available &amp; Secure Distributed Systems</title>
6+
<link href="gsaz.css" rel="stylesheet" type="text/css" />
7+
<link href="http://fonts.googleapis.com/css?family=Shanti" rel="stylesheet" type="text/css" />
78
</head>
89
<body>
910
<nav>
10-
<div class="button">
11-
<a href="/" class="buttonl">Home</a>
12-
</div>
13-
<div class="button">
14-
<a href="https://github.com/lambda-co-at" class="buttonl">GitHub</a>
15-
</div>
16-
<div class="button">
17-
<a href="mailto:[email protected]" class="buttonl">Contact</a>
18-
</div>
19-
<div class="button">
20-
<a href="imprint.html" class="buttonl">Imprint</a>
21-
</div>
11+
<ul>
12+
<li><a href="profile.html">Profile</a></li>
13+
<li><a href="mailto:[email protected]">Contact</a></li>
14+
<li><a href="imprint.html">Imprint</a></li>
15+
<li><a href="https://github.com/lambda-co-at">GitHub</a></li>
16+
</ul>
2217
</nav>
2318

24-
<div id="logo">
25-
<a href="http://lambda.co.at"><img src="lambda.png" alt="lambda.co.at logo" border="0" /></a>
26-
</div>
19+
<div id="logo">
20+
<a href="http://lambda.co.at"><img src="lambda_l_small.png" alt="logo" /></a>
21+
</div>
2722

28-
<div id="wraptocenter">
29-
<p id="motto">Scaling &amp; Securing Distributed Systems</p>
30-
31-
<h2>Imprint / Legal</h2>
32-
33-
<p>VAT-No.: ATU-67371756</p>
34-
<address>
35-
Aaron Zauner<br />
36-
Zentagasse 20/28<br />
37-
1050 - Wien<br />
38-
Oesterreich / Austria<br />
39-
Europe
40-
</address>
41-
42-
<h2>Company Mailboxes</h2>
43-
44-
<p>
45-
<a href="mailto:[email protected]">[email protected]</a><br />
46-
(cert,noc,abuse,info,postmaster,hostmaster,webmaster,..)
47-
</p>
48-
49-
<h2>Company Logo in Scalable Vector Graphics</h2>
50-
51-
<p>
52-
<a href="lambda.svg">lambda.svg</a>
53-
</p>
54-
<p>
55-
<a href="lambda_l.svg">lambda_l.svg</a>
56-
</p>
57-
</div>
58-
<footer>
59-
&copy; 2012 - 2013 :: lambda.co.at
23+
<div id="wrap">
24+
<h2>Imprint / Legal</h2>
25+
26+
VAT-No.: ATU-67371756
27+
<br><br>
28+
<address>
29+
Aaron Zauner<br />
30+
Zentagasse 20/28<br />
31+
1050 - Wien<br />
32+
Oesterreich / Austria<br />
33+
Europe
34+
</address>
35+
36+
<h2>Contact</h2>
37+
38+
39+
<h2>Logo in Scalable Vector Graphics</h2>
40+
<a href="lambda.svg">lambda.svg</a>
41+
<br>
42+
<a href="lambda_l.svg">lambda_l.svg</a>
43+
</div>
44+
45+
<footer>
46+
&copy; 2012 - 2014 :: lambda.co.at
6047
</footer>
6148
</body>
6249
</html>

0 commit comments

Comments
 (0)