-
Notifications
You must be signed in to change notification settings - Fork 12
/
nav1.css
72 lines (58 loc) · 1.22 KB
/
nav1.css
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
*{
box-sizing: border-box;
margin:0 ;
padding: 0;
}
#real {
font-weight: 500px;
font-size: 45px;
columns: #5d4955;;
text-decoration: none;
background-color: #5d4955;
display: flex;
margin: 0px;
padding: 0px;
letter-spacing: 3px;
}
.container{
color: darkgray;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 20px;
overflow: hidden;
}
#mylogo {
content: poniter;
width: 170px;
height: 110px;
float: left;
margin-top: 20px;
margin-left: 20px;
padding: 10px;
}
.nav-links {
list-style: none;
font-family: 'Permanent Marker', cursive;
font-family: 'Amaranth', sans-serif;
font-size: 50px;
font-weight: 50px;
margin-top: 35px;
margin-right: 25px;
margin-left: 900px;
}
.nav-links li {
display: inline-block;
padding: 0px 20px;
}
.nav-links li a {
transition: all 0.3s ease 0s;
font-weight: bold;
font-size: 15px;
color: bisque;
text-decoration: none;
font-family: 'Permanent Marker', cursive;
font-family: 'Amaranth', sans-serif;
}
.nav-links li a:hover {
color: #DAA520;
}