-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorporate.php
145 lines (115 loc) · 3.01 KB
/
corporate.php
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pi Design Group Darmstadt</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/foundation.css"/>
<script src="js/custom.modernizr.js"></script>
<script src="js/jquery.js"></script>
<script src="js/easing.js"></script>
<script src="js/jquery.debouncedresize.js"></script>
<script src="js/script.js"></script>
<style type="text/css">
li{
line-height: 18px;
}
h1{
margin-bottom: 3px;
font-family: kl !important;
font-size: 65px;
}
p{
line-height: 18px;
}
.websites a{
font-size: 19px;
font-family: km !important;
}
.text,.img{
float: left;
z-index: 33;
}
.img{
margin-left: -430px;
}
div[bg]{
right: 0 !important
}
.text{
}
div[bg]{
opacity: 0;
}
.website_wrapper{
opacity: 0;
position: fixed;
bottom: 90px;
left: 50%;
margin-left: -510px;
z-index: 1000;
width: 1256px;
}
.always{
opacity: 1 !important;
}
@media only screen and (max-width: 700px){
.img{
display: none;
}
}
</style>
</head>
<body>
<?php include ("header.php"); ?>
<div style="background:url(img/background_corporate/Background_Einleitungsseite_CI.png);" bg="0" class="bg1"></div>
<div class="website_wrapper" wrapper="2">
<div class="text">
<div class="websites">
<h1>Corporate Design</h1>
<p style="margin-bottom:40px">Wie wird Ihr Unternehmen nach außen wahrgenommen?<br>
Ist der Markenkern eindeutig und unverwechselbar? <br> Legen Sie die Realisierung einer überzeugenden Außen-<br>
darstellung in erfahrene Hände. Wir stärken Profil, Wieder-<br>erkennungswert und Akzeptanz Ihres Unternehmens.</p>
<p style="font-size:18px;margin-bottom:17px" class="midbold">Unsere Leistungen</p>
<ul style="margin-bottom:40px">
<li>– Logos / Brands</li>
<li>– Markenaufbau</li>
<li>– Außendarstellung</li>
<li>– Fuhrpark und Beschilderung</li>
<li>– Gestalltungsleitfäden</li>
<li>– Unternehmenskultur</li>
<li>– Public Design</li>
</ul>
<a href="corp_slider.php">Arbeitsbeispiele ansehen</a>
</div>
</div>
<div class="img">
<img style="margin-bottom:-20px;" class="websites" src="img/intro/exponat_intro3.png">
</div>
</div>
<div class="back_grad"></div>
<?php include ("footer.php"); ?>
<script type="text/javascript">
$(document).ready(function(){
setTimeout(function(){
$('.website_wrapper,div[bg]').animate({opacity:1}, 750,function(){
$('div[bg]').addClass('always');
});
},100)
blink();
function blink(){
$('.websites a').animate({opacity:0.2}, 750,function(){
$('.websites a').animate({opacity:1}, 750,function(){
blink();
});
});
}
});
</script>
</body>
</html>