View difference between Paste ID: NdSQpFLC and H8bGhLsn
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE HTML>
2
<html>
3
<head>
4
	<meta http-equiv="content-type" content="text/html" />
5
	<meta name="author" content="gencyolcu" />
6
7-
	<title>Navi</title>
7+
	<title>Layout</title>
8
</head>
9
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
10
<style>
11
body, html
12
{
13
    margin: 0;
14
    padding: 0;
15
    background: rgba(0,0,0,0.1); 
16
    font-family: Ubuntu;
17
}
18
#head
19
{
20
    height: 65px;
21
    background: #545454;
22
    border-bottom: 5px solid #353535;
23
}
24
#head nav
25
{
26
    margin: 0 auto;
27
    width: 800px;
28
    text-align: center;
29
}
30
#head nav a
31
{
32
    margin: 0 10px;
33
    color: rgba(255,255,255,0.7);
34
    text-decoration: none;
35
    line-height: 65px;
36
    transition: box-shadow 0.7s, color 0.5s, text-shadow 0.6s;
37-
    padding: 21px 10px 23px 10px;
37+
    padding: 24px 10px 26px 10px;
38
}
39
#head nav a:hover
40
{
41-
    box-shadow: inset 0px 65px 0px 0px rgba(0,0,0,0.3);
41+
    box-shadow: inset 0px 67px 0px 0px rgba(0,0,0,0.3);
42
    color: rgba(255,255,255,0.85);
43
    text-shadow: 0px 0px 5px white;
44
}
45
#head nav .selected
46
{
47
    margin: 0 10px;
48
    color: #FFF;
49
    text-shadow: 0px 0px 7px white;
50
}
51
</style>
52
<body>
53
<div id="head">
54
    <nav>
55
        <a href="#">Home</a>
56
        <span class="selected">Blog</span>
57
        <a href="#">YouTube</a>
58
        <a href="#">Facebook</a>
59
    </nav>
60
</div>
61
62
</body>
63
</html>