-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.css
More file actions
64 lines (58 loc) · 1.08 KB
/
features.css
File metadata and controls
64 lines (58 loc) · 1.08 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:'Roboto', sans-serif;
}
.container
{
width:100%;
height: 130vh;
background-image: url(img/hero-banner.png);
background-position:right ;
background-size: auto;
background-repeat: no-repeat;
padding: auto;
background-color:black;
}
.navbar {
background-color: #1f5285;
width: 100%;
height: 60px;
padding: 20px;
display: flex;
align-items: center;
}
.navbar-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.navbar-item {
display: inline-block;
margin-right: 10px;
}
.navbar-link {
text-decoration: none;
color: #fff;
padding: 5px 10px;
}
.active {
background-color: #09090a;
border-radius: 5px;
}
.navbar-link:hover {
background-color: #0b0b0c;
border-radius: 5px;
}
.navbar .btn{
color: #fff;
text-decoration: none;
border: 1px solid #fff;
padding: 10px 30px;
border-radius: 20px;
}
.navbar .btn:hover {
background-color: #0b0b0c;
border-radius: 20px;
}