Skip to content

Commit 33b2138

Browse files
authored
Merge pull request #7 from nityanandagohain/master
Links in bottom bar added
2 parents 1760446 + 44be4c3 commit 33b2138

File tree

2 files changed

+65
-16
lines changed

2 files changed

+65
-16
lines changed

css/style.css

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1+
html {
2+
position: relative;
3+
min-height: 100%;
4+
}
15
body {
26
font: 400 1em/1.5 "Neuton";
37
background: #090d00;
48
color: rgba(255, 255, 255, 0.25);
59
text-align: center;
6-
margin: 0;
10+
margin: 0 0 50px;
11+
padding: 25px;
712
}
813

9-
p span {
14+
.animated-logo {
15+
margin: 10% 25% 0% 25%;
16+
}
17+
.animated-logo p span {
1018
font: 700 4em/1 "Oswald", sans-serif;
1119
letter-spacing: 0;
1220
padding: .25em 0 .325em;
@@ -34,3 +42,37 @@ p span {
3442
background-position: 100% 50%;
3543
}
3644
}
45+
46+
.bottom-bar {
47+
font-family: 'Courier New', Courier, monospace;
48+
position: absolute;
49+
background: #white;
50+
left: 0;
51+
bottom: 0;
52+
height: 50px;
53+
width: 100%;
54+
/* overflow: hidden;*/
55+
}
56+
57+
.bottom-bar ul {
58+
margin: 0% 25% 0 25%;
59+
}
60+
61+
.bottom-bar ul li {
62+
border-left: 2px solid white;
63+
border-right: 2px solid white;
64+
display: inline-block;
65+
margin: 5px;
66+
}
67+
68+
.bottom-bar ul li a{
69+
margin: 5px;
70+
color: rgb(185, 175, 175);
71+
text-decoration: none;
72+
}
73+
74+
.bottom-bar ul li a:hover{
75+
color: rgb(7, 6, 6);
76+
background: white;
77+
transition: all 0.3s ease;
78+
}

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="https://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)