-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1.23 KB
/
style.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
body{
margin: 0;
}
.top-container{
background-image: url("https://images.unsplash.com/photo-1617396900799-f4ec2b43c7ae?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTA2fHx0ZWNobm9sb2d5fGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60");
height: 100vh;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.top-container h1{
color: bisque;
font-size: 60px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
letter-spacing: 4px;
}
.text{
margin: 50px 5%;
font-family: sans-serif;
}
.navbar{
display: flex;
position: fixed;
background-color: rgb(241, 231, 232);
width: 100%;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.8);
transition: 0.4s;
}
.navbar ul{
display: flex;
list-style-type: none;
}
.navbar ul li a{
text-decoration: none;
margin: 10px 20px;
color: black;
font-family: 'Courier New', Courier, monospace;
font-size:20px ;
}
.navbar ul li a:hover{
color: brown;
}
.img{
height: 40px;
width: 200px;
}
.navbar.active{
background-color: black;
}
.navbar.active ul li a{
color: white;
}