Skip to content

Commit 25f540e

Browse files
hectorhector
hector
authored and
hector
committed
Add index page, assets folder with several images and css stylesheets.
1 parent 9f5e556 commit 25f540e

File tree

10 files changed

+71
-0
lines changed

10 files changed

+71
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

assets/.DS_Store

6 KB
Binary file not shown.

assets/fonts/.DS_Store

6 KB
Binary file not shown.

assets/fonts/airstrikebold.ttf

34.1 KB
Binary file not shown.

assets/fonts/league-gothic.ttf

34.8 KB
Binary file not shown.

assets/images/.DS_Store

6 KB
Binary file not shown.

assets/images/ds_logo.png

135 KB
Loading

assets/stylesheets/.DS_Store

6 KB
Binary file not shown.

assets/stylesheets/devshop.css

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
body {
2+
background: linear-gradient( to top, #000080, #0000B2, #0066FF);
3+
}
4+
5+
/** Navigation **/
6+
.navigation-wrapper {
7+
position: relative;
8+
width: 98%;
9+
height:100px;
10+
padding-top:20px;
11+
padding-bottom:auto;
12+
padding-left: 10px;
13+
padding-right: 10px;
14+
}
15+
.corner-logo {
16+
float: left;
17+
width: 100px;
18+
height: auto;
19+
position: block;
20+
}
21+
.navigation-bar {
22+
width: 90%;
23+
height: 60%;
24+
margin-top: 10px;
25+
margin-left: 10px;
26+
font-size: 2em;
27+
font-family: league-gothic;
28+
position: auto, 5px;
29+
display: inline-block;
30+
border-color: #E6E6E6;
31+
border-radius: 10px;
32+
background: linear-gradient( to top, #000080, #0000B2, #0066FF);
33+
}
34+
.navigation-bar ul{
35+
margin-left: 60px;
36+
margin-right: 60px;
37+
margin-bottom: 25px;
38+
margin-top: 25px;
39+
padding: 0;
40+
list-style: none;
41+
}
42+
.navigation-bar ul li {
43+
display: inline;
44+
margin-right:80px;
45+
}
46+
47+
/** Fonts **/
48+
49+
@font-face {
50+
font-family: league-gothic;
51+
src: url(assets/fonts/league-gothic.ttf);
52+
}

index.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="assets/stylesheets/devshop.css">
4+
<title>Devshop</title>
5+
</head>
6+
<body>
7+
<div class="navigation-wrapper">
8+
<div>
9+
<a href="index.php"><img class="corner-logo" src="assets/images/ds_logo.png"></a>
10+
</div>
11+
<div class="navigation-bar">
12+
<ul>
13+
<li>HOLA</li>
14+
<li>HOLA</li>
15+
</ul>
16+
</div>
17+
</div>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)