Skip to content

Commit 8de8061

Browse files
Links in bottom bar added
1 parent 1760446 commit 8de8061

File tree

2 files changed

+52
-15
lines changed

2 files changed

+52
-15
lines changed

css/style.css

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ body {
66
margin: 0;
77
}
88

9-
p span {
9+
.animated-logo {
10+
margin: 10% 25% 0% 25%;
11+
}
12+
.animated-logo p span {
1013
font: 700 4em/1 "Oswald", sans-serif;
1114
letter-spacing: 0;
1215
padding: .25em 0 .325em;
@@ -34,3 +37,30 @@ p span {
3437
background-position: 100% 50%;
3538
}
3639
}
40+
41+
.bottom-bar {
42+
margin-top: 20%;
43+
font-family: 'Courier New', Courier, monospace;
44+
}
45+
46+
.bottom-bar ul {
47+
margin: 10% 25% 0 25%;
48+
}
49+
.bottom-bar ul li {
50+
border-left: 2px solid white;
51+
border-right: 2px solid white;
52+
display: inline-block;
53+
margin: 5px;
54+
}
55+
56+
.bottom-bar ul li a{
57+
margin: 5px;
58+
color: rgb(185, 175, 175);
59+
text-decoration: none;
60+
}
61+
62+
.bottom-bar ul li a:hover{
63+
color: rgb(7, 6, 6);
64+
background: white;
65+
transition: all 0.3s ease;
66+
}

index.html

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<title>Yogdaan</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
8+
99
<link rel="stylesheet" href="./css/style.css">
1010

1111
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
@@ -14,18 +14,13 @@
1414

1515
<style>
1616
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
17-
p {
17+
18+
.animated-logo p {
1819
text-transform: uppercase;
1920
letter-spacing: .5em;
20-
display: inline-block;
2121
border: 4px double rgba(255, 255, 255, 0.25);
2222
border-width: 4px 0;
2323
padding: 1.5em 0em;
24-
position: absolute;
25-
top: 18%;
26-
left: 50%;
27-
width: 40em;
28-
margin: 0 0 0 -20em;
2924
}
3025
</style>
3126

@@ -34,12 +29,24 @@
3429
</head>
3530

3631
<body>
37-
38-
<p>
39-
<span>
40-
Yogdaan
41-
</span>
42-
</p>
32+
<!-- Animated Logo -->
33+
<section class="animated-logo">
34+
<p>
35+
<span>
36+
Yogdaan
37+
</span>
38+
</p>
39+
</section>
40+
41+
42+
<!-- Bottom bar -->
43+
<section class="bottom-bar">
44+
<ul>
45+
<li><a href="t.me/yogdaan">Telegram</a></li>
46+
<li><a href="https://gitter.im/yogdaan/Lobby">Gitter</a></li>
47+
<li><a href="https://orgmanager.miguelpiedrafita.com/join/38074740">Github</a></li>
48+
</ul>
49+
</section>
4350
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
4451

4552

0 commit comments

Comments
 (0)