-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
36 lines (31 loc) · 909 Bytes
/
home.css
File metadata and controls
36 lines (31 loc) · 909 Bytes
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
body {
height: 100vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("https://images.unsplash.com/photo-1559521783-1d1599583485?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80");
background-size: cover;
background-position: center;
text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.5);
}
.cover-container {
max-width: 60vw;
}
.nav-link {
padding: 0.25rem 0;
font-weight: 700;
color: rgba(255,255,255,0.5);
margin-left: 1rem;
border-bottom: 0.25rem solid transparent;
}
.nav-link:hover{
color: rgba(255,255,255,0.5);
border-bottom-color:rgba(255,255,255,0.5);
}
.nav-link.active {
color: white;
border-bottom-color:white;
}
.btn-secondary, .btn-secondary:hover{
color: #333;
text-shadow: none;
}