-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
53 lines (47 loc) · 899 Bytes
/
style2.css
File metadata and controls
53 lines (47 loc) · 899 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
*{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #111;
color: whitesmoke;
}
.navbar{
height: 55px;
display: flex;
justify-content: space-between;
align-items: center;
}
.navname{
display: flex;
justify-content: flex-start;
margin-left: 900px;
color: rgba(245, 245, 245, 0.684);
font-weight: 500;
align-items: center;
font-size: 1rem;
}
.navlist{
display: flex;
justify-content: space-evenly;
align-items: center;
}
li{
color: rgba(245, 245, 245, 0.684);
list-style: none;
display: inline-block;
}
li a{
text-decoration: none;
color: rgba(245, 245, 245, 0.684);
margin-right :40px;
font-size: 1rem;
}
.navlist ul li a:hover{
color: grey;
}
.img{
display: flex;
flex-direction: column;
height: 600px;
width: 500px;
background-size: cover;
}