-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
64 lines (51 loc) · 1.07 KB
/
main.css
File metadata and controls
64 lines (51 loc) · 1.07 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;
}
body{
min-height: 150vh;
margin: auto;
background-image:url(972713a1e137911928137242b2f07472.jpg) ;
background-size: contain;
background-position: center;
background-repeat:repeat;
font-family: Georgia, 'Times New Roman', Times, serif;
}
nav
{
background-color: pink;
box-shadow: 5px 5px 6px rgba(0, 0, 0 ,0.6);
}
nav ul{
width: 100%;
list-style: none;
display: flex;
justify-content: flex-end;
align-items: center;
}
nav li{
height: 50px;
}
nav a {
height: 110%;
padding: 0px 16px;
text-decoration: none;
display: flex;
align-items: center;
color: black;
transition: background color 03s ease;
}
nav a:hover {
background-color: pink;
border : 1px;
border: 1px solid pink;
margin: 1px;
border-radius: 15px;
padding: 3px;
box-sizing: inherit;
box-shadow: black;
}
nav li:first-child {
margin-right: auto;
box-sizing: border-box;
}