-
Notifications
You must be signed in to change notification settings - Fork 1
/
LandingPage.css
83 lines (65 loc) · 1.1 KB
/
LandingPage.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
.title{
font-family: 'Fjalla One', sans-serif;
font-size: 60px;
text-align: center;
}
#bannerLogo{
margin-top:10px;
margin-left:550px;
margin-bottom:10px;
}
nav.navsection{
height:50px;
width:930px;
background-color: white;
margin-left:250px;
}
ul.navbar{
color:black;
text-decoration: none;
text-align:center;
font-size: 20px;
font-family: 'Fjalla One', sans-serif;
}
li{
display:inline;
padding:12px;
}
.slide{
display:inline-block;
position:relative;
padding-bottom: 30px;
}
.slide:after{
content:'';
display: block;
margin: auto;
height: 3px;
width:0px;
background: transparent;
transition:width .5s ease, background-color .5s ease;
}
.slide:hover:after{
width:100%;
background:orange;
}
/* div.crimewatch{
float:left;
margin-top:30px;
margin-left:300px;
}
div.map{
float:left;
margin-top:10px;
margin-right:300px;
}
div.comforum{
margin-top:50px;
margin-right:100px;
}
*/
div.footer{
height:100px;
width:1495px;
background-color: black;
}