-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.css
59 lines (57 loc) · 1.06 KB
/
photo.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
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background: url(bg.jpg) no-repeat;
background-attachment: fixed;
color: black;
font-family: "open sans";
display: flex;
flex-direction: column;
justify-content: space-between;
}
header {
display: flex;
justify-content: space-between;
color: #ffce14;
background: #0f2453;
}
header div {
display: flex;
justify-content: space-between;
align-items: center;
font-family: "roboto";
margin: 0 2rem;
}
header div i {
font-size: 2rem;
margin: 1rem;
}
header nav {
padding: 1rem 2rem;
}
nav ul li {
list-style: none;
display: inline;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 5px;
}
nav li a {
padding: 1rem;
margin: 1rem;
text-decoration: none;
color: white;
transition: all 250ms ease-in;
}
nav li a:hover {
background: #ffce14;
color: black;
}
.img-box{
border: #0f2453;
border-radius: 20px;
}