-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprac.css
More file actions
49 lines (43 loc) · 714 Bytes
/
Copy pathprac.css
File metadata and controls
49 lines (43 loc) · 714 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
body{
margin : 0;
padding : 0;
font-family: sans-serif;
box-sizing: border-box;
}
.container {
position: absolute;
background : black;
width : 100%;
height : 15%;
margin : 0 auto;
border-radius: 7px;
}
nav {
display: flex;
align-content: center;
justify-content: space-between;
}
h1 {
margin-top: 22px;
color :white;
letter-spacing: 0.3em;
margin : 1.5em 1em;
}
.menu{
margin : 2.5rem 2rem;
}
a{
text-decoration: none;
color : white;
position: relative;
padding : 0 .5rem;
height: 100%;
letter-spacing: 1px;
}
a:last-child{
margin-right: 1em;
}
a:hover::before {
content:"";
background: grey;
}