-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (71 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (71 loc) · 1.28 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
65
66
67
68
69
70
71
72
73
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
html{
font-size: 62.5%;
font-family: 'Open Sans', sans-serif;
}
:root{
--red: #602722;
--blue-dark: #14111a;
--pink: #d6a482;
--black: #040404;
--blue: #0b0b1c;
}
.header{
width: 100%;
height: 11rem;
background-color: var(--blue);
display: flex;
justify-content: center;
}
.header__figure img{
width: 12rem;
height: 10rem;
object-fit: cover;
}
.header__nav{
display: none;
}
.main{
padding: 1rem;
background-image: url(https://wallpaperaccess.com/full/3484327.jpg);
background-repeat: repeat;
display:grid;
justify-items:center;
}
.main figure{
width: 90%;
max-width: 330px;
margin: 2rem 0;
background: rgba(0, 0, 0, 0.70);
padding: 1rem;
border: .3rem solid white;
border-radius: 1rem;
color: white;
display: flex;
flex-direction: column;
}
.main figure img{
width: 16rem;
height: 15rem;
object-fit: cover;
border-radius: 1rem;
margin: 2rem auto;
}
.main figure figcaption{
font-size: 1.4rem;
}
.footer{
width: 100%;
background-color: var(--blue);
display: flex;
align-items: center;
justify-content: center;
}
.footer p{
color: var(--pink);
font-size: 1.2rem;
}