forked from dmitrysharkov/appdevstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (86 loc) · 2 KB
/
index.html
File metadata and controls
106 lines (86 loc) · 2 KB
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
<html>
<head>
<link rel="icon" type="image/png" href="favicon.png" />
<link href='http://fonts.googleapis.com/css?family=Arbutus+Slab' rel='stylesheet' type='text/css'>
<style>
@font-face {
font-family: 'Orienta';
font-style: normal;
font-weight: 400;
src: local('Orienta'), local('Orienta-Regular'), url(http://themes.googleusercontent.com/static/fonts/orienta/v1/AsnUYvMEMy3O-QZHGBPSUgLUuEpTyoUstqEm5AMlJo4.woff) format('woff');
}
body {
background-image: url(bg_home.jpg);
background-repeat: no-repeat;
background-size: 100%;
background-color: black;
color: white;
}
h1 {
text-align: center;
font-family: Orienta;
font-size: 70pt;
margin-bottom: 25px;
padding: 0;
}
.logo {
top: 50%;
position: absolute;
margin-top: -250px;
left: 50%;
margin-left: -500px;
width: 1000px;
}
.slogan {
margin-top: 40px;
text-align: center;
letter-spacing: 0.4em;
font-family: 'Arbutus Slab', serif;
font-size: 25pt;
}
.menu {
color: white;
text-align: center;
font-family: sans-serif;
font-size: 14pt;
padding-top: 5px;
padding-bottom: 5px;
bottom: 50px;
left: 50%;
margin-left: -310px;
width: 620px;
position: absolute;
text-align: center;
border-radius: 20px;
}
.menu a {
vertical-align: bottom;
color: white;
text-decoration: none;
padding-top: 20px;
letter-spacing: 0.25em;
margin: 0px 5px 0px 5px;
text-align: center;
}
.menu a.active {
border-bottom: 4px solid black;
}
.menu a:hover {
color: gray;
}
</style>
</head>
<body>
<div class="logo">
<h1>[ app dev : studio ]</h1>
<p class="slogan">Where ideas become businesses</p>
</div>
<div class="menu">
<a href="#">STUDIO</a>•
<a href="#">PEOPLE</a>•
<a href="#">WORK</a>•
<a href="#">BLOG</a>•
<a href="#">CONTACT</a>
</div>
</body>
</html>