-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (76 loc) · 1.18 KB
/
styles.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
*{
margin: 0;
padding: 0;
}
body{
text-align: center;
}
.wrapper{
width: 1170px;
margin:0 auto;
}
header{
height: 100px;
background: #262626;
width: 100%;
z-index: 12;
position: fixed;
}
.logo{
width: 30%;
float:left;
line-height: 100px;
}
.logo a{
text-decoration: none;
font-size: 30px;
font-family: sans-serif;
color: #fff;
letter-spacing: 5px;
}
nav{
float: right;
line-height: 100px;
}
nav a{
text-decoration: none;
font-family: sans-serif;
letter-spacing: 4px;
font-size: 20px;
margin: 0 10px;
color: #fff;
}
nav a:hover{
background-color: gold;
}
.banner-area{
width:100%;
height: 500px;
position: fixed;
top: 100px;
}
.banner-area h2{
padding-top: 8%;
font-size: 70px;
font-family: fantasy;
text-transform: uppercase;
}
.content-area{
width: 100%;
position: relative;
top: 450px;
background: #ddd;
height: 1500px;
}
.content-area h3{
font-family:sans-serif;
letter-spacing: 4px;
padding-top: 30px;
font-size: 40px;
margin: 0;
}
.content-area p{
padding: 2% 0;
font-family: sans-serif;
line-height: 30px;
}